diff options
author | angela <angela@lindenlab.com> | 2010-02-08 16:03:06 +0800 |
---|---|---|
committer | angela <angela@lindenlab.com> | 2010-02-08 16:03:06 +0800 |
commit | 7d21ca8b2e2a15dddcd28595937cdc1b187d4435 (patch) | |
tree | f38fa1ef39311b7a49ba2b961398d6ffecddee86 /indra | |
parent | 4e0fe69c15bb6c54004b1add2907b30813fc277d (diff) |
EXT-4821 [NUX] Home Panel should default to open on first-run
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llstartup.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/indra/newview/llstartup.cpp b/indra/newview/llstartup.cpp index 7f002db364..e58cdfc6b1 100644 --- a/indra/newview/llstartup.cpp +++ b/indra/newview/llstartup.cpp @@ -135,13 +135,14 @@ #include "llsecondlifeurls.h" #include "llselectmgr.h" #include "llsky.h" +#include "llsidetray.h" #include "llstatview.h" -#include "lltrans.h" #include "llstatusbar.h" // sendMoneyBalanceRequest(), owns L$ balance #include "llsurface.h" #include "lltexturecache.h" #include "lltexturefetch.h" #include "lltoolmgr.h" +#include "lltrans.h" #include "llui.h" #include "llurldispatcher.h" #include "llurlsimstring.h" @@ -1201,6 +1202,7 @@ bool idle_startup() display_startup(); LLStartUp::setStartupState( STATE_MULTIMEDIA_INIT ); + return FALSE; } @@ -1707,6 +1709,9 @@ bool idle_startup() // Set the show start location to true, now that the user has logged // on with this install. gSavedSettings.setBOOL("ShowStartLocation", TRUE); + + LLSideTray::getInstance()->showPanel("panel_home", LLSD()); + } // We're successfully logged in. |