diff options
author | Richard Linden <none@none> | 2011-07-06 18:43:52 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2011-07-06 18:43:52 -0700 |
commit | caff254c9155b55412556c9270bec4b114d83270 (patch) | |
tree | 73bcba96859c1137ed39b995427d994b4d87d136 /indra/newview/llstartup.cpp | |
parent | 6c63a1ae09dca557af67a06c7871bfe287765dd4 (diff) |
EXP-847 FIX As a user, I would like to see the How To floater appear the first time I log in to basic mode
Diffstat (limited to 'indra/newview/llstartup.cpp')
-rw-r--r-- | indra/newview/llstartup.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/indra/newview/llstartup.cpp b/indra/newview/llstartup.cpp index 167dd68f08..ba1f7cd2e3 100644 --- a/indra/newview/llstartup.cpp +++ b/indra/newview/llstartup.cpp @@ -76,6 +76,7 @@ #include "lluserrelations.h" #include "llversioninfo.h" #include "llviewercontrol.h" +#include "llviewerhelp.h" #include "llvfs.h" #include "llxorcipher.h" // saved password, MAC address #include "llwindow.h" @@ -1692,11 +1693,22 @@ bool idle_startup() gViewerThrottle.setMaxBandwidth(FAST_RATE_BPS / 1024.f); } + if (gSavedSettings.getBOOL("ShowHelpOnFirstLogin")) + { + gSavedSettings.setBOOL("HelpFloaterOpen", TRUE); + } + // Set the show start location to true, now that the user has logged // on with this install. gSavedSettings.setBOOL("ShowStartLocation", TRUE); } + if (gSavedSettings.getBOOL("HelpFloaterOpen")) + { + // show default topic + LLViewerHelp::instance().showTopic(""); + } + // We're successfully logged in. gSavedSettings.setBOOL("FirstLoginThisInstall", FALSE); |