diff options
author | Dmitry Oleshko <doleshko@productengine.com> | 2009-10-28 12:08:49 +0200 |
---|---|---|
committer | Dmitry Oleshko <doleshko@productengine.com> | 2009-10-28 12:08:49 +0200 |
commit | f71f8ecdf909bbeb6573870d3860b0447a64914c (patch) | |
tree | 7a401862c4ffe4d07ff0673de3941ddb8211d637 /indra | |
parent | 3fd1072577beb82866471517eb63092e98f0c63c (diff) |
additional comments for the major bug (EXT-1849) Crash in Notification subsystem while teleporting and having toasts shown
--HG--
branch : product-engine
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/lltoast.cpp | 6 | ||||
-rw-r--r-- | indra/newview/lltoast.h | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/indra/newview/lltoast.cpp b/indra/newview/lltoast.cpp index b9c73076d2..24824a095c 100644 --- a/indra/newview/lltoast.cpp +++ b/indra/newview/lltoast.cpp @@ -208,7 +208,11 @@ void LLToast::setVisible(BOOL show) { if(mIsHidden) { - // this toast is invisible untill its ScreenChannel will allow it + // this toast is invisible after fade until its ScreenChannel will allow it + // + // (EXT-1849) according to this bug a toast can be resurrected from + // invisible state if it faded during a teleportation + // then it fades a second time and causes a crash return; } diff --git a/indra/newview/lltoast.h b/indra/newview/lltoast.h index d4fddc3077..0698c94880 100644 --- a/indra/newview/lltoast.h +++ b/indra/newview/lltoast.h @@ -166,7 +166,7 @@ private: bool mCanBeStored; bool mHideBtnEnabled; bool mHideBtnPressed; - bool mIsHidden; // this flag is TRUE when a toast has faded or was hidden with (x) button + bool mIsHidden; // this flag is TRUE when a toast has faded or was hidden with (x) button (EXT-1849) }; } |