diff options
author | Jacek Antonelli | 2008-08-15 23:45:55 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:55 -0500 |
commit | 9063e60aefe54f7c45aaa8cb24e8998b2c7343ab (patch) | |
tree | 1c8235465701c910a5d76448ddc8eb1f14457ebc /linden/indra/llwindow | |
parent | Second Life viewer sources 1.20.9 (diff) | |
download | meta-impy-9063e60aefe54f7c45aaa8cb24e8998b2c7343ab.zip meta-impy-9063e60aefe54f7c45aaa8cb24e8998b2c7343ab.tar.gz meta-impy-9063e60aefe54f7c45aaa8cb24e8998b2c7343ab.tar.bz2 meta-impy-9063e60aefe54f7c45aaa8cb24e8998b2c7343ab.tar.xz |
Second Life viewer sources 1.20.10
Diffstat (limited to 'linden/indra/llwindow')
-rw-r--r-- | linden/indra/llwindow/llwindowwin32.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/linden/indra/llwindow/llwindowwin32.cpp b/linden/indra/llwindow/llwindowwin32.cpp index af96a80..70487b7 100644 --- a/linden/indra/llwindow/llwindowwin32.cpp +++ b/linden/indra/llwindow/llwindowwin32.cpp | |||
@@ -1371,7 +1371,9 @@ void LLWindowWin32::moveWindow( const LLCoordScreen& position, const LLCoordScre | |||
1371 | // if the window was already maximized, MoveWindow seems to still set the maximized flag even if | 1371 | // if the window was already maximized, MoveWindow seems to still set the maximized flag even if |
1372 | // the window is smaller than maximized. | 1372 | // the window is smaller than maximized. |
1373 | // So we're going to do a restore first (which is a ShowWindow call) (SL-44655). | 1373 | // So we're going to do a restore first (which is a ShowWindow call) (SL-44655). |
1374 | ShowWindow(mWindowHandle, SW_RESTORE); | 1374 | |
1375 | // THIS CAUSES DEV-15484 and DEV-15949 | ||
1376 | //ShowWindow(mWindowHandle, SW_RESTORE); | ||
1375 | // NOW we can call MoveWindow | 1377 | // NOW we can call MoveWindow |
1376 | MoveWindow(mWindowHandle, position.mX, position.mY, size.mX, size.mY, TRUE); | 1378 | MoveWindow(mWindowHandle, position.mX, position.mY, size.mX, size.mY, TRUE); |
1377 | } | 1379 | } |