diff options
| author | Andrew Dyukov <adyukov@productengine.com> | 2009-11-09 22:23:28 +0200 | 
|---|---|---|
| committer | Andrew Dyukov <adyukov@productengine.com> | 2009-11-09 22:23:28 +0200 | 
| commit | ff8fc7309a88b970eae2b4621724a2b24e9413fe (patch) | |
| tree | 276b7bd6aaa06d8193d21575c5b7460c484ca642 /indra | |
| parent | 31cc68ecd373d4deae85bbd223f5d47ffef34a24 (diff) | |
Fixed EXT-2104 (Chiclets overflow buttons overlap lower tray elements)-
in this changeset and
 in 4466:3ad0401e16a5. Here I changed height of buuttons.
--HG--
branch : product-engine
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/llchiclet.cpp | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/indra/newview/llchiclet.cpp b/indra/newview/llchiclet.cpp index 0d724e32fb..fe4859ead0 100644 --- a/indra/newview/llchiclet.cpp +++ b/indra/newview/llchiclet.cpp @@ -1044,11 +1044,11 @@ void LLChicletPanel::reshape(S32 width, S32 height, BOOL called_from_parent )  		return;  	LLRect scroll_button_rect = mLeftScrollButton->getRect(); -	mLeftScrollButton->setRect(LLRect(0,height,scroll_button_rect.getWidth(), -		height - scroll_button_rect.getHeight())); +	mLeftScrollButton->setRect(LLRect(0,scroll_button_rect.mTop,scroll_button_rect.getWidth(), +		scroll_button_rect.mBottom));  	scroll_button_rect = mRightScrollButton->getRect(); -	mRightScrollButton->setRect(LLRect(width - scroll_button_rect.getWidth(),height, -		width, height - scroll_button_rect.getHeight())); +	mRightScrollButton->setRect(LLRect(width - scroll_button_rect.getWidth(),scroll_button_rect.mTop,
 +		width, scroll_button_rect.mBottom));
  	mScrollArea->setRect(LLRect(scroll_button_rect.getWidth() + SCROLL_BUTTON_PAD,  		height, width - scroll_button_rect.getWidth() - SCROLL_BUTTON_PAD, 0));  	mShowControls = width > mMinWidth; | 
