diff options
Diffstat (limited to 'indra/newview')
| -rw-r--r-- | indra/newview/llavataractions.cpp | 7 | ||||
| -rw-r--r-- | indra/newview/llexpandabletextbox.cpp | 7 | ||||
| -rw-r--r-- | indra/newview/llexpandabletextbox.h | 1 | ||||
| -rw-r--r-- | indra/newview/skins/default/xui/en/panel_bottomtray.xml | 12 | 
4 files changed, 16 insertions, 11 deletions
| diff --git a/indra/newview/llavataractions.cpp b/indra/newview/llavataractions.cpp index 636b1de4d4..c5a1ffdcb3 100644 --- a/indra/newview/llavataractions.cpp +++ b/indra/newview/llavataractions.cpp @@ -264,11 +264,8 @@ bool LLAvatarActions::isCalling(const LLUUID &id)  //static  bool LLAvatarActions::canCall(const LLUUID &id)  { -	if(isFriend(id)) -	{ -		return LLAvatarTracker::instance().isBuddyOnline(id) && LLVoiceClient::voiceEnabled(); -	} -	else +	// For now we do not need to check whether passed UUID is ID of agent's friend. +	// Use common check of Voice Client state.  	{  		// don't need to check online/offline status because "usual resident" (resident that is not a friend)  		// can be only ONLINE. There is no way to see "usual resident" in OFFLINE status. If we see "usual diff --git a/indra/newview/llexpandabletextbox.cpp b/indra/newview/llexpandabletextbox.cpp index 9c37c953fe..9f6412c0ab 100644 --- a/indra/newview/llexpandabletextbox.cpp +++ b/indra/newview/llexpandabletextbox.cpp @@ -322,6 +322,13 @@ void LLExpandableTextBox::expandTextBox()  	// hide "more" link, and show full text contents  	mTextBox->hideExpandText(); +	// *HACK dz +	// hideExpandText brakes text styles (replaces hyper-links with plain text), see ticket EXT-3290 +	// Set text again to make text box re-apply styles. +	// *TODO Find proper solution to fix this issue. +	// Maybe add removeSegment to LLTextBase +	mTextBox->setTextBase(mText); +  	S32 text_delta = mTextBox->getVerticalTextDelta();  	text_delta += mTextBox->getVPad() * 2;  	text_delta += mScroll->getBorderWidth() * 2; diff --git a/indra/newview/llexpandabletextbox.h b/indra/newview/llexpandabletextbox.h index 7c989cfa50..2b4f9e527c 100644 --- a/indra/newview/llexpandabletextbox.h +++ b/indra/newview/llexpandabletextbox.h @@ -61,6 +61,7 @@ protected:  		// adds or removes "More" link as needed  		/*virtual*/ void reshape(S32 width, S32 height, BOOL called_from_parent = TRUE);  		/*virtual*/ void setText(const LLStringExplicit& text, const LLStyle::Params& input_params = LLStyle::Params()); +		void setTextBase(const std::string& text) { LLTextBase::setText(text); }  		/**  		 * Returns difference between text box height and text height. diff --git a/indra/newview/skins/default/xui/en/panel_bottomtray.xml b/indra/newview/skins/default/xui/en/panel_bottomtray.xml index 034f685ee9..3e2910458f 100644 --- a/indra/newview/skins/default/xui/en/panel_bottomtray.xml +++ b/indra/newview/skins/default/xui/en/panel_bottomtray.xml @@ -351,9 +351,9 @@ image_pressed_selected  "Lit" + "Selected" - there are new messages and the Well                   height="23"                   image_overlay="Unread_IM"                   image_overlay_alignment="center" -                 image_pressed="WellButton_Lit_Selected" -                 image_pressed_selected="WellButton_Lit" -                 image_selected="WellButton_Lit" +                 image_pressed="WellButton_Lit" +                 image_pressed_selected="WellButton_Lit_Selected" +                 image_selected="PushButton_Selected_Press"                   label_color="Black"                   left="0"                   max_displayed_count="99" @@ -391,9 +391,9 @@ image_pressed_selected  "Lit" + "Selected" - there are new messages and the Well               width="35">                <button                   bottom_pad="3" -                 image_selected="WellButton_Lit" -                 image_pressed="WellButton_Lit_Selected" -                 image_pressed_selected="WellButton_Lit " +                 image_pressed="WellButton_Lit" +                 image_pressed_selected="WellButton_Lit_Selected" +                 image_selected="PushButton_Selected_Press"                auto_resize="true"                 halign="center"                 height="23" | 
