diff options
author | Vadim Savchuk <vsavchuk@productengine.com> | 2010-01-15 18:48:18 +0200 |
---|---|---|
committer | Vadim Savchuk <vsavchuk@productengine.com> | 2010-01-15 18:48:18 +0200 |
commit | b21fca13e6bea9420f80a35163d25a33b929bbd1 (patch) | |
tree | 3f85e1ce6c4b99a6e56c84c3df6a686fa017a891 /indra/newview/llfloatergesture.cpp | |
parent | b83e37f37ce63d54834b7cf8edf3a5d58a4ba357 (diff) |
Fixed low priority bug EXT-4372 (Gestures floater: dblclick on item in list resetes scroll-bar).
The list gets rebuilt whenever you activate or play a gesture. And rebuild did not save the scroll position.
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview/llfloatergesture.cpp')
-rw-r--r-- | indra/newview/llfloatergesture.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/indra/newview/llfloatergesture.cpp b/indra/newview/llfloatergesture.cpp index 4f256eae4b..de65c6f876 100644 --- a/indra/newview/llfloatergesture.cpp +++ b/indra/newview/llfloatergesture.cpp @@ -245,6 +245,7 @@ void LLFloaterGesture::refreshAll() void LLFloaterGesture::buildGestureList() { + S32 scroll_pos = mGestureList->getScrollPos(); std::vector<LLUUID> selected_items; getSelectedIds(selected_items); LL_DEBUGS("Gesture")<< "Rebuilding gesture list "<< LL_ENDL; @@ -274,13 +275,14 @@ void LLFloaterGesture::buildGestureList() } } } + // attempt to preserve scroll position through re-builds - // since we do re-build any time anything dirties + // since we do re-build whenever something gets dirty for(std::vector<LLUUID>::iterator it = selected_items.begin(); it != selected_items.end(); it++) { mGestureList->selectByID(*it); } - mGestureList->scrollToShowSelected(); + mGestureList->setScrollPos(scroll_pos); } void LLFloaterGesture::addGesture(const LLUUID& item_id , LLMultiGesture* gesture,LLCtrlListInterface * list ) |