diff options
author | Jacek Antonelli | 2008-11-11 01:27:30 -0600 |
---|---|---|
committer | Jacek Antonelli | 2008-11-11 01:30:11 -0600 |
commit | 05d8238833be43677825cd58c57aab6ad3ee259e (patch) | |
tree | 1d01652be4f6e95a5c80c91466c071944cced259 | |
parent | Added 'Custom' filter option (opens filters window). (diff) | |
download | meta-impy-05d8238833be43677825cd58c57aab6ad3ee259e.zip meta-impy-05d8238833be43677825cd58c57aab6ad3ee259e.tar.gz meta-impy-05d8238833be43677825cd58c57aab6ad3ee259e.tar.bz2 meta-impy-05d8238833be43677825cd58c57aab6ad3ee259e.tar.xz |
Show Filters window refreshes properly.
-rw-r--r-- | ChangeLog.txt | 6 | ||||
-rw-r--r-- | linden/indra/newview/llinventoryview.cpp | 9 |
2 files changed, 15 insertions, 0 deletions
diff --git a/ChangeLog.txt b/ChangeLog.txt index d51522f..d9a1957 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt | |||
@@ -1,3 +1,9 @@ | |||
1 | 2008-11-11 Jacek Antonelli <jacek.antonelli@gmail.com> | ||
2 | |||
3 | * linden/indra/newview/llinventoryview.cpp: | ||
4 | Show Filters window refreshes properly. | ||
5 | |||
6 | |||
1 | 2008-11-08 Jacek Antonelli <jacek.antonelli@gmail.com> | 7 | 2008-11-08 Jacek Antonelli <jacek.antonelli@gmail.com> |
2 | 8 | ||
3 | * linden/indra/newview/llinventoryview.cpp: | 9 | * linden/indra/newview/llinventoryview.cpp: |
diff --git a/linden/indra/newview/llinventoryview.cpp b/linden/indra/newview/llinventoryview.cpp index 6d5bf4d..07b5115 100644 --- a/linden/indra/newview/llinventoryview.cpp +++ b/linden/indra/newview/llinventoryview.cpp | |||
@@ -1078,6 +1078,15 @@ void LLInventoryView::onQuickFilterCommit(LLUICtrl* ctrl, void* user_data) | |||
1078 | 1078 | ||
1079 | view->mActivePanel->setFilterTypes( filter_type ); | 1079 | view->mActivePanel->setFilterTypes( filter_type ); |
1080 | 1080 | ||
1081 | |||
1082 | // Force the filters window to update itself, if it's open. | ||
1083 | LLInventoryViewFinder* finder = view->getFinder(); | ||
1084 | if( finder ) | ||
1085 | { | ||
1086 | finder->updateElementsFromFilter(); | ||
1087 | } | ||
1088 | |||
1089 | |||
1081 | llinfos << "Quick Filter: " << item_type << llendl; | 1090 | llinfos << "Quick Filter: " << item_type << llendl; |
1082 | } | 1091 | } |
1083 | 1092 | ||