diff options
-rw-r--r-- | win32/PlatWin.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/PlatWin.cxx b/win32/PlatWin.cxx index 546b278db..a65ff4a9c 100644 --- a/win32/PlatWin.cxx +++ b/win32/PlatWin.cxx @@ -722,7 +722,7 @@ PRectangle Window::GetPosition() { void Window::SetPosition(PRectangle rc) { ::SetWindowPos(reinterpret_cast<HWND>(id), - 0, rc.left, rc.top, rc.Width(), rc.Height(), 0); + 0, rc.left, rc.top, rc.Width(), rc.Height(), SWP_NOZORDER); } void Window::SetPositionRelative(PRectangle rc, Window) { |