diff options
author | Oz Linden <oz@lindenlab.com> | 2013-08-19 15:14:23 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2013-08-19 15:14:23 -0400 |
commit | 731fe3e7c6287c63134c1a08572f9d97a0eb0ff0 (patch) | |
tree | 142060ca39c7e495d05edf7e0359a15716840705 /indra/llui/llscrolllistcolumn.cpp | |
parent | 53eff025bc205e3127da4dc0c3df3cb406eb1153 (diff) | |
parent | 171089207b528ab80a954292c127ba77254ee927 (diff) |
merge changes for 3.6.3-release
Diffstat (limited to 'indra/llui/llscrolllistcolumn.cpp')
-rwxr-xr-x | indra/llui/llscrolllistcolumn.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/llui/llscrolllistcolumn.cpp b/indra/llui/llscrolllistcolumn.cpp index af124d9826..cc9ff7a487 100755 --- a/indra/llui/llscrolllistcolumn.cpp +++ b/indra/llui/llscrolllistcolumn.cpp @@ -236,7 +236,8 @@ void LLScrollColumnHeader::handleReshape(const LLRect& new_rect, bool by_user) // tell scroll list to layout columns again // do immediate update to get proper feedback to resize handle // which needs to know how far the resize actually went - mColumn->mParentCtrl->updateColumns(); + const bool force_update = true; + mColumn->mParentCtrl->updateColumns(force_update); } } |