[longomatch] Don't check tags in the filters when filling the filters



commit 3bf3919bacb044850f2ec03c95e14165e78b969f
Author: Andoni Morales Alastruey <ylatuya gmail com>
Date:   Fri Sep 19 18:24:07 2014 +0200

    Don't check tags in the filters when filling the filters
    
    If tags are checked, events without tags won't match the filter
    and will be filtered out.

 .../Gui/TreeView/CategoriesFilterTreeView.cs       |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)
---
diff --git a/LongoMatch.GUI/Gui/TreeView/CategoriesFilterTreeView.cs 
b/LongoMatch.GUI/Gui/TreeView/CategoriesFilterTreeView.cs
index 548c583..6996bab 100644
--- a/LongoMatch.GUI/Gui/TreeView/CategoriesFilterTreeView.cs
+++ b/LongoMatch.GUI/Gui/TreeView/CategoriesFilterTreeView.cs
@@ -56,8 +56,7 @@ namespace LongoMatch.Gui.Component
 
                                if (evType is AnalysisEventType) {
                                        foreach (Tag tag in (evType as AnalysisEventType).Tags) {
-                                               filter.FilterEventTag (evType, tag, true);
-                                               store.AppendValues(catIter, tag, true);
+                                               store.AppendValues(catIter, tag, false);
                                        }
                                }
                        }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]