diff options
author | nyamatongwe <devnull@localhost> | 2003-01-18 21:34:26 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2003-01-18 21:34:26 +0000 |
commit | 56b2b0b1bb7e75660130e1cc5e951eab8ce3215e (patch) | |
tree | 935af507dc0bc4a00e7f21bb8b5189b06c21f5d3 | |
parent | 35a97d476996ebdd263b4d9a97ed1bb405182e57 (diff) | |
download | scintilla-mirror-56b2b0b1bb7e75660130e1cc5e951eab8ce3215e.tar.gz |
Added SWP_NOZORDER to SetWindowPos to avoid fronting windows.
-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) { |