diff options
author | Sergei Litovchuk <slitovchuk@productengine.com> | 2009-12-30 14:21:14 +0200 |
---|---|---|
committer | Sergei Litovchuk <slitovchuk@productengine.com> | 2009-12-30 14:21:14 +0200 |
commit | 3e7de89a6d0d58a34d9d75e9b114e9cf298276d6 (patch) | |
tree | 6d5dafab168fdf600c21f9053df9f47400588375 /indra/newview | |
parent | db482969ed69b16b1755599750dd2d80cb4daff8 (diff) |
Fixed normal bug (EXT-3714) No landmarks is shown in expanded accordeon after filter has been used.
- Added applying filter upon accordion expansion to update currently filtered items.
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llpanellandmarks.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/newview/llpanellandmarks.cpp b/indra/newview/llpanellandmarks.cpp index 87abb16395..30acf37f82 100644 --- a/indra/newview/llpanellandmarks.cpp +++ b/indra/newview/llpanellandmarks.cpp @@ -505,6 +505,10 @@ void LLLandmarksPanel::onAccordionExpandedCollapsed(const LLSD& param, LLPlacesI { gInventory.startBackgroundFetch(cat_id); } + + // Apply filter substring because it might have been changed + // while accordion was closed. See EXT-3714. + filter_list(inventory_list, sFilterSubString); } } |