diff options
author | Richard Linden <none@none> | 2012-05-25 11:39:37 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2012-05-25 11:39:37 -0700 |
commit | d713925f435add08f6e48fec2472671fae58f170 (patch) | |
tree | 754e78df7ed38afa808cd24eb6695e133ddb4a75 /indra/llui/llnotifications.cpp | |
parent | 61d550ee85b371add15d174b4f6fbd93624c3490 (diff) |
CHUI-132 FIX Modal dialogs cannot be dismissed
Diffstat (limited to 'indra/llui/llnotifications.cpp')
-rw-r--r-- | indra/llui/llnotifications.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/llnotifications.cpp b/indra/llui/llnotifications.cpp index 08b93ead40..487a2e5fe7 100644 --- a/indra/llui/llnotifications.cpp +++ b/indra/llui/llnotifications.cpp @@ -1067,9 +1067,9 @@ bool LLNotificationChannelBase::updateItem(const LLSD& payload, LLNotificationPt // if we have it in our list, pass on the delete, then delete it, else do nothing if (wasFound) { - mItems.erase(pNotification); onDelete(pNotification); abortProcessing = mChanged(payload); + mItems.erase(pNotification); } } return abortProcessing; |