diff options
| author | AlexanderP ProductEngine <apaschenko@productengine.com> | 2012-12-04 20:49:42 +0200 | 
|---|---|---|
| committer | AlexanderP ProductEngine <apaschenko@productengine.com> | 2012-12-04 20:49:42 +0200 | 
| commit | 04dee1bad92da5910394f920247db60bade9ecc1 (patch) | |
| tree | 99140be4ac954ab5bc2e66c368740087133cb1f4 | |
| parent | 7527431bedce5529d33add21ec53336800f48fd0 (diff) | |
CHUI-504 FIXED Open Conversation floater on first login.
added toggleInstanceOrBringToFront("im_container") to LLStartup;
typo corr.
| -rwxr-xr-x | indra/newview/llstartup.cpp | 7 | 
1 files changed, 5 insertions, 2 deletions
| diff --git a/indra/newview/llstartup.cpp b/indra/newview/llstartup.cpp index 1704ad9055..34259658ea 100755 --- a/indra/newview/llstartup.cpp +++ b/indra/newview/llstartup.cpp @@ -1520,7 +1520,7 @@ bool idle_startup()  	}  	//--------------------------------------------------------------------- -	// Agent Send +	// World Wait  	//---------------------------------------------------------------------  	if(STATE_WORLD_WAIT == LLStartUp::getStartupState())  	{ @@ -1846,6 +1846,10 @@ bool idle_startup()  			// Set the show start location to true, now that the user has logged  			// on with this install.  			gSavedSettings.setBOOL("ShowStartLocation", TRUE); + +			// Open Conversation floater on first login. +			LLFloaterReg::toggleInstanceOrBringToFront("im_container"); +  		}  		display_startup(); @@ -2168,7 +2172,6 @@ bool idle_startup()  		display_startup();  		// Unmute audio if desired and setup volumes. -		// Unmute audio if desired and setup volumes.  		// This is a not-uncommon crash site, so surround it with  		// llinfos output to aid diagnosis.  		LL_INFOS("AppInit") << "Doing first audio_update_volume..." << LL_ENDL; | 
