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/newview | |
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/newview')
-rw-r--r-- | indra/newview/llnamelistctrl.cpp | 4 | ||||
-rw-r--r-- | indra/newview/llnamelistctrl.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/llnamelistctrl.cpp b/indra/newview/llnamelistctrl.cpp index b0fbad33b0..1f1f89349a 100644 --- a/indra/newview/llnamelistctrl.cpp +++ b/indra/newview/llnamelistctrl.cpp @@ -409,9 +409,9 @@ void LLNameListCtrl::onAvatarNameCache(const LLUUID& agent_id, } -void LLNameListCtrl::updateColumns() +void LLNameListCtrl::updateColumns(bool force_update) { - LLScrollListCtrl::updateColumns(); + LLScrollListCtrl::updateColumns(force_update); if (!mNameColumn.empty()) { diff --git a/indra/newview/llnamelistctrl.h b/indra/newview/llnamelistctrl.h index 3ac0565761..09c3d49fe7 100644 --- a/indra/newview/llnamelistctrl.h +++ b/indra/newview/llnamelistctrl.h @@ -142,7 +142,7 @@ public: void sortByName(BOOL ascending); - /*virtual*/ void updateColumns(); + /*virtual*/ void updateColumns(bool force_update); /*virtual*/ void mouseOverHighlightNthItem( S32 index ); private: |