From e13d8087ea1ce652a2652fa3903c2b963a9d71bf Mon Sep 17 00:00:00 2001 From: Mnikolenko ProductEngine Date: Tue, 6 Oct 2015 16:11:42 +0300 Subject: MAINT-5694 FIXED Links on the 1st line of a group notice message are sometimes not clickable. --- indra/newview/skins/default/xui/en/panel_notification_list_item.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'indra') diff --git a/indra/newview/skins/default/xui/en/panel_notification_list_item.xml b/indra/newview/skins/default/xui/en/panel_notification_list_item.xml index 0c173261a3..a909028f9f 100644 --- a/indra/newview/skins/default/xui/en/panel_notification_list_item.xml +++ b/indra/newview/skins/default/xui/en/panel_notification_list_item.xml @@ -97,7 +97,7 @@ Notice Title Notice Title N o t i c e T i t l e N o t i c e T i t l e + use_ellipses="true" word_wrap="false" mouse_opaque="false" name="group_name_exp" parse_urls="false" visible="false"> Group Name Group Name Group Na m e e @@ -109,7 +109,7 @@ - + Notice text goes here b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla. bla bla bla bla bla bla bla bla bla bla bla bla bla . -- cgit v1.2.3 From bbedc51d1df3a9705deda43c0c267be45846acff Mon Sep 17 00:00:00 2001 From: Mnikolenko ProductEngine Date: Thu, 8 Oct 2015 17:06:04 +0300 Subject: MAINT-5708 FIXED Images shouldn't be displayed in notification titles --- indra/newview/llnotificationlistitem.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'indra') 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)); -- cgit v1.2.3