Skip to content
Snippets Groups Projects
Commit f71f8ecd authored by Dmitry Oleshko's avatar Dmitry Oleshko
Browse files

additional comments for the major bug (EXT-1849) Crash in Notification...

additional comments for the major bug (EXT-1849) Crash in Notification subsystem while teleporting and having toasts shown

--HG--
branch : product-engine
parent 3fd10725
No related branches found
No related tags found
No related merge requests found
...@@ -208,7 +208,11 @@ void LLToast::setVisible(BOOL show) ...@@ -208,7 +208,11 @@ void LLToast::setVisible(BOOL show)
{ {
if(mIsHidden) 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; return;
} }
......
...@@ -166,7 +166,7 @@ class LLToast : public LLModalDialog ...@@ -166,7 +166,7 @@ class LLToast : public LLModalDialog
bool mCanBeStored; bool mCanBeStored;
bool mHideBtnEnabled; bool mHideBtnEnabled;
bool mHideBtnPressed; 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)
}; };
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment