diff options
| author | Gilbert Gonzales <gilbert@lindenlab.com> | 2013-02-08 18:12:26 -0800 | 
|---|---|---|
| committer | Gilbert Gonzales <gilbert@lindenlab.com> | 2013-02-08 18:12:26 -0800 | 
| commit | a034c272c3d8d526a70998aae7ee816070481c39 (patch) | |
| tree | 98b57c2b5a78fca36fd865088c40d8d654db69c3 | |
| parent | 29a57c16c976eb39b3a0e82872435e0228044ba9 (diff) | |
CHUI-747: Script buttons in a toast overlap message text. Problem was due to the message container not being shifted upward when buttons were added to the control buttons container (which is beneath the message container). A small change in CHUI-695 caused this.
| -rw-r--r-- | indra/newview/lltoastnotifypanel.cpp | 3 | ||||
| -rw-r--r-- | indra/newview/skins/default/xui/en/panel_notification.xml | 2 | 
2 files changed, 4 insertions, 1 deletions
| diff --git a/indra/newview/lltoastnotifypanel.cpp b/indra/newview/lltoastnotifypanel.cpp index bd6c42d474..3fd056ea31 100644 --- a/indra/newview/lltoastnotifypanel.cpp +++ b/indra/newview/lltoastnotifypanel.cpp @@ -403,6 +403,9 @@ void LLToastNotifyPanel::init( LLRect rect, bool show_images )          }      } +	//.xml file intially makes info panel only follow left/right/top. This is so that when control buttons are added the info panel  +	//can shift upward making room for the buttons inside mControlPanel. After the buttons are added, the info panel can then be set to follow 'all'. +	mInfoPanel->setFollowsAll();      snapToMessageHeight(mTextBox, MAX_LENGTH);  } diff --git a/indra/newview/skins/default/xui/en/panel_notification.xml b/indra/newview/skins/default/xui/en/panel_notification.xml index 421ecf10a1..94c468e1bb 100644 --- a/indra/newview/skins/default/xui/en/panel_notification.xml +++ b/indra/newview/skins/default/xui/en/panel_notification.xml @@ -22,7 +22,7 @@      background_visible="true"    bg_alpha_color="ToastBackground"    bg_opaque_color="ToastBackground" -    follows="all" +    follows="left|right|top"      height="100"      label="info_panel"      layout="topleft" | 
