From 5b79b33eb1a712163933c8d9d7526a49723f7ff3 Mon Sep 17 00:00:00 2001 From: donho Date: Thu, 17 Jan 2008 01:20:23 +0000 Subject: [PATCH] [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 --- PowerEditor/src/Notepad_plus.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PowerEditor/src/Notepad_plus.cpp b/PowerEditor/src/Notepad_plus.cpp index a185bb358..4ba728483 100644 --- a/PowerEditor/src/Notepad_plus.cpp +++ b/PowerEditor/src/Notepad_plus.cpp @@ -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); }