aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--ChangeLog.txt6
-rw-r--r--linden/indra/newview/llinventoryview.cpp2
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 @@
12009-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
12009-02-16 Jacek Antonelli <jacek.antonelli@gmail.com> 72009-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