diff options
author | Richard Nelson <richard@lindenlab.com> | 2011-09-28 10:40:28 -0700 |
---|---|---|
committer | Richard Nelson <richard@lindenlab.com> | 2011-09-28 10:40:28 -0700 |
commit | fc0f5173eb20fad8934420e6eec8873d71490894 (patch) | |
tree | c5fe36c8bf3b0f37200cb0c88d35e45f4d9cef4a /indra/llui | |
parent | e4e499e326812e66de9b9c0392ea9899a6e71e63 (diff) |
fix linux build
Diffstat (limited to 'indra/llui')
-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 89b3f671a4..4991c4afa6 100644 --- a/indra/llui/lllayoutstack.cpp +++ b/indra/llui/lllayoutstack.cpp @@ -498,13 +498,13 @@ void LLLayoutStack::updateLayout(BOOL force_resize) { (*panel_it)->mResizeBar->setResizeLimits( relevant_min, - relevant_min + shrink_headroom_total); + relevant_min + llround(shrink_headroom_total)); } else //VERTICAL { (*panel_it)->mResizeBar->setResizeLimits( relevant_min, - relevant_min + shrink_headroom_total); + relevant_min + llround(shrink_headroom_total)); } // toggle resize bars based on panel visibility, resizability, etc |