diff options
| author | Mnikolenko Productengine <mnikolenko@productengine.com> | 2021-03-18 20:18:23 +0200 | 
|---|---|---|
| committer | Mnikolenko Productengine <mnikolenko@productengine.com> | 2021-03-18 20:18:23 +0200 | 
| commit | 38db12920c92b00e11aa533980790e8572ba6908 (patch) | |
| tree | 18d2f4b44b49a25a7dffe81ae5d5a06354b40342 | |
| parent | e48ce282784d508ecc58efbb771d2e717df5d3c8 (diff) | |
SL-14901 adjusted 'More' button
| -rw-r--r-- | indra/newview/llfavoritesbar.cpp | 2 | ||||
| -rw-r--r-- | indra/newview/skins/default/xui/en/panel_navigation_bar.xml | 2 | 
2 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/llfavoritesbar.cpp b/indra/newview/llfavoritesbar.cpp index 2394a763ee..8791f605e9 100644 --- a/indra/newview/llfavoritesbar.cpp +++ b/indra/newview/llfavoritesbar.cpp @@ -402,6 +402,8 @@ LLFavoritesBarCtrl::LLFavoritesBarCtrl(const LLFavoritesBarCtrl::Params& p)  	mMoreTextBox = LLUICtrlFactory::create<LLTextBox> (more_button_params);  	mMoreTextBox->setClickedCallback(boost::bind(&LLFavoritesBarCtrl::showDropDownMenu, this));  	addChild(mMoreTextBox); +	LLRect rect = mMoreTextBox->getRect(); +	mMoreTextBox->setRect(LLRect(rect.mLeft - rect.getWidth(), rect.mTop, rect.mRight, rect.mBottom));  	mDropDownItemsCount = 0; diff --git a/indra/newview/skins/default/xui/en/panel_navigation_bar.xml b/indra/newview/skins/default/xui/en/panel_navigation_bar.xml index d3448ed0ba..2dae2649a9 100644 --- a/indra/newview/skins/default/xui/en/panel_navigation_bar.xml +++ b/indra/newview/skins/default/xui/en/panel_navigation_bar.xml @@ -187,7 +187,7 @@               name="favorite"               image_drag_indication="Accordion_ArrowOpened_Off"               tool_tip="Drag Landmarks here for quick access to your favorite places in Second Life!" -             width="268"> +             width="310">              <label               follows="left|top"               height="13"  | 
