[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:
parent
df87cfe02d
commit
5b79b33eb1
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue