diff options
author | pavelkproductengine <pavelkproductengine@lindenlab.com> | 2015-07-31 17:49:45 +0300 |
---|---|---|
committer | pavelkproductengine <pavelkproductengine@lindenlab.com> | 2015-07-31 17:49:45 +0300 |
commit | 5665c5320c50180e69e3616613b7796da919a721 (patch) | |
tree | cc493aa669c9a4478e3eb9318896837ce6a342c7 /indra/newview/llfloaternotificationstabbed.cpp | |
parent | f0f95036a4dade0b918d6be152b9789905bdaa22 (diff) |
MAINT-5394 [Project Notice] The PERMISSION_DEBIT notification is not distinct enough on the Project Notice viewer.
Diffstat (limited to 'indra/newview/llfloaternotificationstabbed.cpp')
-rw-r--r-- | indra/newview/llfloaternotificationstabbed.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/indra/newview/llfloaternotificationstabbed.cpp b/indra/newview/llfloaternotificationstabbed.cpp index 57109c6763..5823983b76 100644 --- a/indra/newview/llfloaternotificationstabbed.cpp +++ b/indra/newview/llfloaternotificationstabbed.cpp @@ -396,6 +396,7 @@ void LLFloaterNotificationsTabbed::onStoreToast(LLPanel* info_panel, LLUUID id) p.paid_from_id = payload["from_id"]; p.paid_to_id = payload["dest_id"]; p.inventory_offer = payload["inventory_offer"]; + p.notification_priority = notify->getPriority(); addItem(p); } @@ -403,7 +404,10 @@ void LLFloaterNotificationsTabbed::onStoreToast(LLPanel* info_panel, LLUUID id) void LLFloaterNotificationsTabbed::onItemClick(LLNotificationListItem* item) { LLUUID id = item->getID(); - //LLFloaterReg::showInstance("inspect_toast", id); + if (item->showPopup()) + { + LLFloaterReg::showInstance("inspect_toast", id); + } } //--------------------------------------------------------------------------------- |