diff options
author | Richard Linden <none@none> | 2011-03-18 17:08:03 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2011-03-18 17:08:03 -0700 |
commit | 22be29e60f5f45c7d30add3aeb219fef34d4ffec (patch) | |
tree | 710632f51ad660c6ccec7c751796763f0789945b /indra/newview/llviewerwindow.cpp | |
parent | 097e076a7221f8b25914f1fad61e27ac316915e5 (diff) |
SOCIAL-762 FIX cannot change to advanced mode
need separate flags for first run and first login
Diffstat (limited to 'indra/newview/llviewerwindow.cpp')
-rw-r--r-- | indra/newview/llviewerwindow.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/indra/newview/llviewerwindow.cpp b/indra/newview/llviewerwindow.cpp index 0778536d15..6bf363bf68 100644 --- a/indra/newview/llviewerwindow.cpp +++ b/indra/newview/llviewerwindow.cpp @@ -1799,12 +1799,11 @@ void LLViewerWindow::initWorldUI() avatar_picker->navigateTo(gSavedSettings.getString("AvatarPickerURL"), "text/html");
}
- if (gSavedSettings.getBOOL("FirstRunThisInstall"))
+ if (gSavedSettings.getBOOL("FirstLoginThisInstall"))
{
toggle_destination_and_avatar_picker(0);
+ gSavedSettings.setBOOL("FirstLoginThisInstall", FALSE);
}
-
- gSavedSettings.setBOOL("FirstRunThisInstall", FALSE);
}
// Destroy the UI
|