diff options
author | callum <none@none> | 2010-10-08 16:41:33 -0700 |
---|---|---|
committer | callum <none@none> | 2010-10-08 16:41:33 -0700 |
commit | f65bd3c1f18675910c9d49db217a1926bd04494e (patch) | |
tree | 997917152a67e1ebe55adf9b976137a09a9f1517 /indra | |
parent | 78f0e65d63950dab8e72be6db0df22064271cfa2 (diff) |
Fix for Reopened EXP-167 Add option to quit instead of going back to login screen.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llstartup.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llstartup.cpp b/indra/newview/llstartup.cpp index 1a42500ec4..d9234425b8 100644 --- a/indra/newview/llstartup.cpp +++ b/indra/newview/llstartup.cpp @@ -709,7 +709,7 @@ bool idle_startup() // if auto login is on and setting to quit if the login page is activated // is enabled, then go ahead and exit - if ( gSavedSettings.getBOOL("AutoLogin") && gSavedSettings.getBOOL("QuitOnLoginActivated") ) + if ( show_connect_box && gSavedSettings.getBOOL("AutoLogin") && gSavedSettings.getBOOL("QuitOnLoginActivated") ) { // no requirement for notification here - just exit LLAppViewer::instance()->earlyExitNoNotify(); |