diff options
author | Mnikolenko ProductEngine <mnikolenko@productengine.com> | 2015-10-08 17:06:04 +0300 |
---|---|---|
committer | Mnikolenko ProductEngine <mnikolenko@productengine.com> | 2015-10-08 17:06:04 +0300 |
commit | bbedc51d1df3a9705deda43c0c267be45846acff (patch) | |
tree | a1e54069ed95fbad8d978abc691488684fbb3061 /indra | |
parent | e13d8087ea1ce652a2652fa3903c2b963a9d71bf (diff) |
MAINT-5708 FIXED Images shouldn't be displayed in notification titles
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llnotificationlistitem.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/newview/llnotificationlistitem.cpp b/indra/newview/llnotificationlistitem.cpp index 8005fa6239..f0159149d1 100644 --- a/indra/newview/llnotificationlistitem.cpp +++ b/indra/newview/llnotificationlistitem.cpp @@ -75,6 +75,10 @@ BOOL LLNotificationListItem::postBuild() mNoticeTextExp->setEnabled(FALSE); mNoticeTextExp->setTextExpandedCallback(boost::bind(&LLNotificationListItem::reshapeNotification, this)); + mTitleBox->setContentTrusted(false); + mTitleBoxExp->setContentTrusted(false); + mNoticeTextExp->setContentTrusted(false); + mTimeBox->setValue(buildNotificationDate(mParams.time_stamp)); mTimeBoxExp->setValue(buildNotificationDate(mParams.time_stamp)); |