diff options
author | Richard Linden <none@none> | 2013-01-14 16:56:52 -0800 |
---|---|---|
committer | Richard Linden <none@none> | 2013-01-14 16:56:52 -0800 |
commit | 3c08dccd5c373cb232021f92f4f7658fefa83783 (patch) | |
tree | 48ef6b104c0bbd19580e5d293d0d5fe3d11e3254 /indra/llui/llscrolllistcolumn.cpp | |
parent | 4de7c27d9343d866a313ca16f3f102e2750ddb89 (diff) |
MAINT-2223 FIX Scroll list columns resize feature broken
column dirty flag was not set when user resized a column
Diffstat (limited to 'indra/llui/llscrolllistcolumn.cpp')
-rw-r--r-- | 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 100644 --- 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); } } |