Skip to content
Snippets Groups Projects
Commit 6a570a9b authored by Richard Nelson's avatar Richard Nelson
Browse files

fixed icons moving when clicking on icon-only toolbars

parent 06803595
No related branches found
No related tags found
No related merge requests found
...@@ -1002,7 +1002,7 @@ void LLButton::resize(LLUIString label) ...@@ -1002,7 +1002,7 @@ void LLButton::resize(LLUIString label)
if (mImageOverlay) if (mImageOverlay)
{ {
S32 overlay_width = mImageOverlay->getWidth(); 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); overlay_width = llround((F32)overlay_width * scale_factor);
switch(mImageOverlayAlignment) switch(mImageOverlayAlignment)
......
...@@ -852,3 +852,8 @@ void LLToolBarButton::onMouseCaptureLost() ...@@ -852,3 +852,8 @@ void LLToolBarButton::onMouseCaptureLost()
{ {
mIsDragged = false; mIsDragged = false;
} }
void LLToolBarButton::reshape(S32 width, S32 height, BOOL called_from_parent)
{
LLButton::reshape(mWidthRange.clamp(width), height, called_from_parent);
}
...@@ -62,6 +62,8 @@ class LLToolBarButton : public LLButton ...@@ -62,6 +62,8 @@ class LLToolBarButton : public LLButton
BOOL handleMouseDown(S32 x, S32 y, MASK mask); BOOL handleMouseDown(S32 x, S32 y, MASK mask);
BOOL handleHover(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 setCommandId(const LLCommandId& id) { mId = id; }
void setStartDragCallback(tool_startdrag_callback_t cb) { mStartDragItemCallback = cb; } void setStartDragCallback(tool_startdrag_callback_t cb) { mStartDragItemCallback = cb; }
......
...@@ -31,6 +31,8 @@ ...@@ -31,6 +31,8 @@
flash_color="EmphasisColor"/> flash_color="EmphasisColor"/>
<button_icon pad_left="10" <button_icon pad_left="10"
pad_right="10" pad_right="10"
image_bottom_pad="10"
image_top_pad="10"
image_pressed="PushButton_Press" image_pressed="PushButton_Press"
image_pressed_selected="PushButton_Selected_Press" image_pressed_selected="PushButton_Selected_Press"
image_selected="PushButton_Selected_Press" image_selected="PushButton_Selected_Press"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment