[BUG_FIXED] Fix full screen mode bug : can not switch applications by using Alt+TAB in full screen mode.

git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository@107 f5eea248-9336-0410-98b8-ebc06183d4e3
This commit is contained in:
donho 2008-01-17 01:20:23 +00:00
parent df87cfe02d
commit 5b79b33eb1
1 changed files with 1 additions and 1 deletions

View File

@ -7348,7 +7348,7 @@ void Notepad_plus::fullScreenToggle()
}
//Set topmost window, show the window and redraw it
::SetWindowPos(_hSelf, HWND_TOPMOST, fullscreenArea.left, fullscreenArea.top, fullscreenArea.right, fullscreenArea.bottom, 0);
::SetWindowPos(_hSelf, HWND_TOPMOST, fullscreenArea.left, fullscreenArea.top, fullscreenArea.right, fullscreenArea.bottom, SWP_NOZORDER);
::ShowWindow(_hSelf, SW_SHOW);
::SendMessage(_hSelf, WM_SIZE, 0, 0);
}