Skip to content
Snippets Groups Projects
Commit c84fe50f authored by Mnikolenko ProductEngine's avatar Mnikolenko ProductEngine
Browse files

MAINT-5425 FIXED No icon is shown for certain transaction notifications.

parent ca416063
No related branches found
No related tags found
No related merge requests found
...@@ -578,6 +578,14 @@ BOOL LLTransactionNotificationListItem::postBuild() ...@@ -578,6 +578,14 @@ BOOL LLTransactionNotificationListItem::postBuild()
mAvatarIcon->setValue("System_Notification"); mAvatarIcon->setValue("System_Notification");
mAvatarIconExp->setValue("System_Notification"); mAvatarIconExp->setValue("System_Notification");
mAvatarIcon->setVisible(TRUE);
mAvatarIconExp->setVisible(TRUE);
if((GOVERNOR_LINDEN_ID == mParams.paid_to_id) ||
(GOVERNOR_LINDEN_ID == mParams.paid_from_id))
{
return rv;
}
if (mParams.notification_name == "PaymentReceived") if (mParams.notification_name == "PaymentReceived")
{ {
mAvatarIcon->setValue(mParams.paid_from_id); mAvatarIcon->setValue(mParams.paid_from_id);
...@@ -588,8 +596,7 @@ BOOL LLTransactionNotificationListItem::postBuild() ...@@ -588,8 +596,7 @@ BOOL LLTransactionNotificationListItem::postBuild()
mAvatarIcon->setValue(mParams.paid_to_id); mAvatarIcon->setValue(mParams.paid_to_id);
mAvatarIconExp->setValue(mParams.paid_to_id); mAvatarIconExp->setValue(mParams.paid_to_id);
} }
mAvatarIcon->setVisible(TRUE);
mAvatarIconExp->setVisible(TRUE);
return rv; return rv;
} }
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
help_topic="notification_chiclet" help_topic="notification_chiclet"
save_rect="true" save_rect="true"
title="NOTIFICATIONS" title="NOTIFICATIONS"
width="435" width="350"
min_width="435" min_width="435"
height="550" height="550"
min_height="150" min_height="150"
......
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