diff options
| -rw-r--r-- | indra/newview/llappviewer.cpp | 9 | 
1 files changed, 8 insertions, 1 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index 9bb0977c1a..2d694eefd3 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -2891,7 +2891,14 @@ static LLNotificationFunctorRegistration finish_quit_reg("ConfirmQuit", finish_q  void LLAppViewer::userQuit()  { -	LLNotificationsUtil::add("ConfirmQuit"); +	if (gDisconnected) +	{ +		requestQuit(); +	} +	else +	{ +		LLNotificationsUtil::add("ConfirmQuit"); +	}  }  static bool finish_early_exit(const LLSD& notification, const LLSD& response)  | 
