summaryrefslogtreecommitdiff
path: root/indra/llui/llnotifications.cpp
diff options
context:
space:
mode:
authorRichard Linden <none@none>2012-05-25 11:39:37 -0700
committerRichard Linden <none@none>2012-05-25 11:39:37 -0700
commitd713925f435add08f6e48fec2472671fae58f170 (patch)
tree754e78df7ed38afa808cd24eb6695e133ddb4a75 /indra/llui/llnotifications.cpp
parent61d550ee85b371add15d174b4f6fbd93624c3490 (diff)
CHUI-132 FIX Modal dialogs cannot be dismissed
Diffstat (limited to 'indra/llui/llnotifications.cpp')
-rw-r--r--indra/llui/llnotifications.cpp2
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;