diff options
author | Richard Linden <none@none> | 2010-09-17 17:28:22 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2010-09-17 17:28:22 -0700 |
commit | 8e09bcd703a81bfb114df53e620e758a358149a2 (patch) | |
tree | 61e0e58ea9f6aed09a933dbce6e8dc5e8fc4cc6b /indra/llui/llnotifications.cpp | |
parent | 57c1845e2d7274b5cb28dc31a41a00088c2ecdda (diff) |
fix for clicking on Invite Friends resulting in disabling popups
Diffstat (limited to 'indra/llui/llnotifications.cpp')
-rw-r--r-- | indra/llui/llnotifications.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/indra/llui/llnotifications.cpp b/indra/llui/llnotifications.cpp index 6a0d64e876..2a7ca4c321 100644 --- a/indra/llui/llnotifications.cpp +++ b/indra/llui/llnotifications.cpp @@ -618,8 +618,7 @@ void LLNotification::respond(const LLSD& response) if (mForm->getIgnoreType() != LLNotificationForm::IGNORE_NO) { - bool show_notification = !mIgnored; - mForm->setIgnored(!show_notification); + mForm->setIgnored(mIgnored); if (mIgnored && mForm->getIgnoreType() == LLNotificationForm::IGNORE_WITH_LAST_RESPONSE) { LLUI::sSettingGroups["ignores"]->setLLSD("Default" + getName(), response); @@ -745,6 +744,8 @@ void LLNotification::init(const std::string& template_name, const LLSD& form_ele // apply substitution to form labels mForm->formatElements(mSubstitutions); + mIgnored = mForm->getIgnored(); + LLDate rightnow = LLDate::now(); if (mTemplatep->mExpireSeconds) { |