Debugger no longer 'Always On Top' after using 'Restore original window size' button in debugger.

This commit is contained in:
ugetab 2010-05-06 01:07:49 +00:00
parent 05c76ec6c2
commit ee554ce2f1
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ void RestoreSize(HWND hwndDlg)
const int DEFAULT_WIDTH = 821; //Original width
const int DEFAULT_HEIGHT = 549; //Original height
SetWindowPos(hwndDlg,HWND_TOPMOST,DbgPosX,DbgPosY,DEFAULT_WIDTH,DEFAULT_HEIGHT,SWP_SHOWWINDOW);
SetWindowPos(hwndDlg,HWND_TOP,DbgPosX,DbgPosY,DEFAULT_WIDTH,DEFAULT_HEIGHT,SWP_SHOWWINDOW);
}
unsigned int NewBreakWindows(HWND hwndDlg, unsigned int num, bool enable)