diff options
| author | Merov Linden <merov@lindenlab.com> | 2012-01-18 15:59:08 -0800 | 
|---|---|---|
| committer | Merov Linden <merov@lindenlab.com> | 2012-01-18 15:59:08 -0800 | 
| commit | 916d61e4600df58329524e59c06d9621cab02393 (patch) | |
| tree | 3a3767057d76bbffcd58a8f7889733885338a12c | |
| parent | e41ad89f7b68b5f9edaf1fd66decadb8e08d1dce (diff) | |
Fix Linux compilation failure
| -rw-r--r-- | indra/llui/lllayoutstack.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/indra/llui/lllayoutstack.cpp b/indra/llui/lllayoutstack.cpp index 9909032707..34d13610b7 100644 --- a/indra/llui/lllayoutstack.cpp +++ b/indra/llui/lllayoutstack.cpp @@ -417,14 +417,14 @@ void LLLayoutStack::updateLayout()  		if (mOrientation == HORIZONTAL)  		{  			resize_bar_rect.mLeft = panel_rect.mRight - mResizeBarOverlap; -			resize_bar_rect.mRight = panel_rect.mRight + panel_spacing + mResizeBarOverlap; +			resize_bar_rect.mRight = panel_rect.mRight + (S32)(llround(panel_spacing)) + mResizeBarOverlap;  			cur_pos += panel_visible_dim + panel_spacing;  		}  		else //VERTICAL  		{  			resize_bar_rect.mTop = panel_rect.mBottom + mResizeBarOverlap; -			resize_bar_rect.mBottom = panel_rect.mBottom - panel_spacing - mResizeBarOverlap; +			resize_bar_rect.mBottom = panel_rect.mBottom - (S32)(llround(panel_spacing)) - mResizeBarOverlap;  			cur_pos -= panel_visible_dim + panel_spacing;  		} | 
