diff options
| author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2020-06-15 20:22:39 +0300 | 
|---|---|---|
| committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2020-06-15 20:22:39 +0300 | 
| commit | 6f06ccc10a40ebfb89f670149d816cf5f9e3716e (patch) | |
| tree | 5abab35e727135aab3ad2fea8c9d054607d3f2f2 | |
| parent | d07ef7df92cbc9c2fb16dcd0ddd0322665d440eb (diff) | |
SL-12085 Debug-log window position
| -rw-r--r-- | indra/llwindow/llwindowwin32.cpp | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/indra/llwindow/llwindowwin32.cpp b/indra/llwindow/llwindowwin32.cpp index 0b3936f8a5..d657c63207 100644 --- a/indra/llwindow/llwindowwin32.cpp +++ b/indra/llwindow/llwindowwin32.cpp @@ -1126,6 +1126,12 @@ BOOL LLWindowWin32::switchContext(BOOL fullscreen, const LLCoordScreen &size, BO  	mPostQuit = FALSE;  	// create window +    LL_DEBUGS("Window") << "Creating window with X: " << window_rect.left +        << " Y: " << window_rect.top +        << " Width: " << (window_rect.right - window_rect.left) +        << " Height: " << (window_rect.bottom - window_rect.top) +        << " Fullscreen: " << mFullscreen +        << LL_ENDL;  	DestroyWindow(mWindowHandle);  	mWindowHandle = CreateWindowEx(dw_ex_style,  		mWindowClassName, | 
