summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorAndreyL ProductEngine <alihatskiy@productengine.com>2016-09-26 00:58:25 +0300
committerAndreyL ProductEngine <alihatskiy@productengine.com>2016-09-26 00:58:25 +0300
commit7a7dc795f64c7a8ac6de055db5fcfe83d821810d (patch)
tree0952be86a16940a977dd962642f978380d4cb07f /indra
parent2412725293b1715c596395e62b3da341e15b69ac (diff)
MAINT-6744 'System UI size factor has changed... ' shouldn't appear after installation
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llviewerwindow.cpp2
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);
}