diff options
| -rw-r--r-- | indra/llui/llbutton.cpp | 2 | ||||
| -rw-r--r-- | indra/llui/lltoolbar.cpp | 5 | ||||
| -rw-r--r-- | indra/llui/lltoolbar.h | 2 | ||||
| -rw-r--r-- | indra/newview/skins/default/xui/en/widgets/toolbar.xml | 2 | 
4 files changed, 10 insertions, 1 deletions
| diff --git a/indra/llui/llbutton.cpp b/indra/llui/llbutton.cpp index 68cb5164b6..ba3748a573 100644 --- a/indra/llui/llbutton.cpp +++ b/indra/llui/llbutton.cpp @@ -1002,7 +1002,7 @@ void LLButton::resize(LLUIString label)  		if (mImageOverlay)  		{  			S32 overlay_width = mImageOverlay->getWidth(); -			F32 scale_factor = getRect().getHeight() / (F32)mImageOverlay->getHeight(); +			F32 scale_factor = (getRect().getHeight() - (mImageOverlayBottomPad + mImageOverlayTopPad)) / (F32)mImageOverlay->getHeight();  			overlay_width = llround((F32)overlay_width * scale_factor);  			switch(mImageOverlayAlignment) diff --git a/indra/llui/lltoolbar.cpp b/indra/llui/lltoolbar.cpp index 6332b2674a..5ba54edf1c 100644 --- a/indra/llui/lltoolbar.cpp +++ b/indra/llui/lltoolbar.cpp @@ -852,3 +852,8 @@ void LLToolBarButton::onMouseCaptureLost()  {  	mIsDragged = false;  } + +void LLToolBarButton::reshape(S32 width, S32 height, BOOL called_from_parent) +{ +	LLButton::reshape(mWidthRange.clamp(width), height, called_from_parent); +} diff --git a/indra/llui/lltoolbar.h b/indra/llui/lltoolbar.h index 84fa7ec0df..a81a5fdb39 100644 --- a/indra/llui/lltoolbar.h +++ b/indra/llui/lltoolbar.h @@ -62,6 +62,8 @@ public:  	BOOL handleMouseDown(S32 x, S32 y, MASK mask);  	BOOL handleHover(S32 x, S32 y, MASK mask); +	void reshape(S32 width, S32 height, BOOL called_from_parent = true); +  	void setCommandId(const LLCommandId& id) { mId = id; }  	void setStartDragCallback(tool_startdrag_callback_t cb)   { mStartDragItemCallback  = cb; } diff --git a/indra/newview/skins/default/xui/en/widgets/toolbar.xml b/indra/newview/skins/default/xui/en/widgets/toolbar.xml index 09967de7cc..be5dfaf18c 100644 --- a/indra/newview/skins/default/xui/en/widgets/toolbar.xml +++ b/indra/newview/skins/default/xui/en/widgets/toolbar.xml @@ -31,6 +31,8 @@                          flash_color="EmphasisColor"/>    <button_icon pad_left="10"                 pad_right="10" +               image_bottom_pad="10" +               image_top_pad="10"                 image_pressed="PushButton_Press"                 image_pressed_selected="PushButton_Selected_Press"                 image_selected="PushButton_Selected_Press" | 
