diff options
author | Mark Palange (Mani) <palange@lindenlab.com> | 2010-02-05 10:09:51 -0800 |
---|---|---|
committer | Mark Palange (Mani) <palange@lindenlab.com> | 2010-02-05 10:09:51 -0800 |
commit | e00082c644d201291a4f9243f915fc09c320eaa7 (patch) | |
tree | 4f661a476218bdba1282b71f2d83e75c60b3fdb8 /indra/newview/llstartup.cpp | |
parent | b94e5b597a0fb0ca667d50c4a2324025faa308f6 (diff) |
EXT-4237 Fixed ShowStartLocation behavior.
Now the show don't show behavior is always dependent on the ShowStartLocation pref.
ShowStartLocation defaults to off, but is automatically turned on after first successful login.
Reviewed by Richard.
Diffstat (limited to 'indra/newview/llstartup.cpp')
-rw-r--r-- | indra/newview/llstartup.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/newview/llstartup.cpp b/indra/newview/llstartup.cpp index 522adc05ce..dd1ab9ca29 100644 --- a/indra/newview/llstartup.cpp +++ b/indra/newview/llstartup.cpp @@ -1700,6 +1700,10 @@ bool idle_startup() << " kbps" << LL_ENDL; gViewerThrottle.setMaxBandwidth(FAST_RATE_BPS / 1024.f); } + + // Set the show start location to true, now that the user has logged + // on with this install. + gSavedSettings.setBOOL("ShowStartLocation", TRUE); } // We're successfully logged in. |