diff options
author | simon <none@none> | 2013-03-22 14:17:26 -0700 |
---|---|---|
committer | simon <none@none> | 2013-03-22 14:17:26 -0700 |
commit | 1d8e3997c8ced25524f146aeb6cc683e5767a5f7 (patch) | |
tree | 888cc32ac788bcb10dc5df4f0e0124514f4474ef /indra/newview/lldelayedgestureerror.cpp | |
parent | 395f8baf03622f3a36b03b8e31679e3b594b1757 (diff) | |
parent | ef544a22218d59c6a121d4bf88c49868a2b9a713 (diff) |
Pull and merge latest viewer-beta
Diffstat (limited to 'indra/newview/lldelayedgestureerror.cpp')
-rw-r--r-- | indra/newview/lldelayedgestureerror.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/indra/newview/lldelayedgestureerror.cpp b/indra/newview/lldelayedgestureerror.cpp index 80e7c9f1b2..ef1b644ad4 100644 --- a/indra/newview/lldelayedgestureerror.cpp +++ b/indra/newview/lldelayedgestureerror.cpp @@ -113,9 +113,11 @@ bool LLDelayedGestureError::doDialog(const LLErrorEntry &ent, bool uuid_ok) } } - - LLNotificationsUtil::add(ent.mNotifyName, args); - + if(!LLApp::isQuitting()) + { + LLNotificationsUtil::add(ent.mNotifyName, args); + } + return true; } |