diff options
Diffstat (limited to 'indra/newview/llstartup.cpp')
-rw-r--r-- | indra/newview/llstartup.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/indra/newview/llstartup.cpp b/indra/newview/llstartup.cpp index f315869437..d57292e23d 100644 --- a/indra/newview/llstartup.cpp +++ b/indra/newview/llstartup.cpp @@ -614,6 +614,8 @@ BOOL idle_startup() if (STATE_LOGIN_SHOW == gStartupState) { + llinfos << "Initializing Window" << llendl; + gViewerWindow->getWindow()->setCursor(UI_CURSOR_ARROW); // Push our window frontmost gViewerWindow->getWindow()->show(); @@ -2531,13 +2533,19 @@ BOOL idle_startup() void login_show() { + llinfos << "Initializing Login Screen" << llendl; + LLPanelLogin::show( gViewerWindow->getVirtualWindowRect(), gSavedSettings.getBOOL("UseDebugLogin"), login_callback, NULL ); + llinfos << "Decoding Images" << llendl; + // Make sure all the UI textures are present and decoded. gImageList.decodeAllImages(2.f); + llinfos << "Setting Servers" << llendl; + if( USERSERVER_OTHER == gUserServerChoice ) { LLPanelLogin::addServer( gUserServerName, USERSERVER_OTHER ); |