diff options
author | Jacek Antonelli | 2009-02-25 01:32:18 -0600 |
---|---|---|
committer | Jacek Antonelli | 2009-02-25 01:32:18 -0600 |
commit | c92be8a9ec7a4c6c2e4771e538c833dd49a17d04 (patch) | |
tree | d3325c51e2915522222504ed6b48ba8a3d482b45 | |
parent | Fixed LSL comment coloring bleeding to next line. [#96] (diff) | |
download | meta-impy-c92be8a9ec7a4c6c2e4771e538c833dd49a17d04.zip meta-impy-c92be8a9ec7a4c6c2e4771e538c833dd49a17d04.tar.gz meta-impy-c92be8a9ec7a4c6c2e4771e538c833dd49a17d04.tar.bz2 meta-impy-c92be8a9ec7a4c6c2e4771e538c833dd49a17d04.tar.xz |
Likely fix for inventory folders re-opening. [#98]
-rw-r--r-- | ChangeLog.txt | 6 | ||||
-rw-r--r-- | linden/indra/newview/llinventoryview.cpp | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog.txt b/ChangeLog.txt index 723649f..095528c 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt | |||
@@ -1,3 +1,9 @@ | |||
1 | 2009-02-25 Jacek Antonelli <jacek.antonelli@gmail.com> | ||
2 | |||
3 | * linden/indra/newview/llinventoryview.cpp: | ||
4 | Likely fix for inventory folders re-opening. [#98] | ||
5 | |||
6 | |||
1 | 2009-02-16 Jacek Antonelli <jacek.antonelli@gmail.com> | 7 | 2009-02-16 Jacek Antonelli <jacek.antonelli@gmail.com> |
2 | 8 | ||
3 | * linden/indra/llui/llkeywords.cpp: | 9 | * linden/indra/llui/llkeywords.cpp: |
diff --git a/linden/indra/newview/llinventoryview.cpp b/linden/indra/newview/llinventoryview.cpp index 1e16b92..a318f5d 100644 --- a/linden/indra/newview/llinventoryview.cpp +++ b/linden/indra/newview/llinventoryview.cpp | |||
@@ -1125,7 +1125,7 @@ void LLInventoryView::onQuickFilterCommit(LLUICtrl* ctrl, void* user_data) | |||
1125 | else if (view->getString("filter_type_all") == item_type) | 1125 | else if (view->getString("filter_type_all") == item_type) |
1126 | { | 1126 | { |
1127 | // Show all types | 1127 | // Show all types |
1128 | filter_type = 0xffffffff; | 1128 | filter_type = LLInventoryType::NIT_ALL; |
1129 | } | 1129 | } |
1130 | 1130 | ||
1131 | else | 1131 | else |