diff options
author | dolphin <dolphin@lindenlab.com> | 2013-08-19 17:17:20 -0700 |
---|---|---|
committer | dolphin <dolphin@lindenlab.com> | 2013-08-19 17:17:20 -0700 |
commit | 98628066eb27d4f2616479538ae20a07bf92cd98 (patch) | |
tree | e5c26ec684cabcbf51d6cc24c7230e5b8413eb10 /indra/llui/llscrolllistcolumn.cpp | |
parent | b33354e1d19f8efafda8b41748c576227595bf5e (diff) | |
parent | 171089207b528ab80a954292c127ba77254ee927 (diff) |
Merge
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); } } |