diff options
| author | AndreyL ProductEngine <alihatskiy@productengine.com> | 2016-09-26 00:58:25 +0300 | 
|---|---|---|
| committer | AndreyL ProductEngine <alihatskiy@productengine.com> | 2016-09-26 00:58:25 +0300 | 
| commit | 7a7dc795f64c7a8ac6de055db5fcfe83d821810d (patch) | |
| tree | 0952be86a16940a977dd962642f978380d4cb07f /indra/newview | |
| parent | 2412725293b1715c596395e62b3da341e15b69ac (diff) | |
MAINT-6744 'System UI size factor has changed... ' shouldn't appear after installation
Diffstat (limited to 'indra/newview')
| -rw-r--r-- | indra/newview/llviewerwindow.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/indra/newview/llviewerwindow.cpp b/indra/newview/llviewerwindow.cpp index 79ddc43a3e..9679f69e2c 100644 --- a/indra/newview/llviewerwindow.cpp +++ b/indra/newview/llviewerwindow.cpp @@ -1755,7 +1755,7 @@ LLViewerWindow::LLViewerWindow(const Params& p)  	F32 system_scale_factor = mWindow->getSystemUISize();  	if (p.first_run || gSavedSettings.getF32("LastSystemUIScaleFactor") != system_scale_factor)  	{ -		mSystemUIScaleFactorChanged = true; +		mSystemUIScaleFactorChanged = !p.first_run;  		gSavedSettings.setF32("LastSystemUIScaleFactor", system_scale_factor);  		gSavedSettings.setF32("UIScaleFactor", system_scale_factor);  	} | 
