Browse Source

[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
pull/343/head^2
donho 17 years ago
parent
commit
5b79b33eb1
  1. 2
      PowerEditor/src/Notepad_plus.cpp

2
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);
}

Loading…
Cancel
Save