diff options
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 | } |