initially hide sidebar categories
This commit is contained in:
parent
5ba3ab43ca
commit
b56e4bc74e
|
@ -224,9 +224,9 @@ class LabelSideBar(component.Component):
|
||||||
|
|
||||||
#add Cat nodes:
|
#add Cat nodes:
|
||||||
self.cat_nodes = {}
|
self.cat_nodes = {}
|
||||||
self.cat_nodes["state"] = self.treestore.append(None, ["cat", "State", 0, None, True])
|
self.cat_nodes["state"] = self.treestore.append(None, ["cat", "State", 0, None, False])
|
||||||
self.cat_nodes["tracker"] = self.treestore.append(None, ["cat","Tracker", 0,None, True])
|
self.cat_nodes["tracker"] = self.treestore.append(None, ["cat","Tracker", 0,None, False])
|
||||||
self.cat_nodes["label"] = self.treestore.append(None, ["cat", "Label", 0, None, True])
|
self.cat_nodes["label"] = self.treestore.append(None, ["cat", "Label", 0, None, False])
|
||||||
|
|
||||||
#default node:
|
#default node:
|
||||||
self.filters[("state", "All")] = self.treestore.append(self.cat_nodes["state"],
|
self.filters[("state", "All")] = self.treestore.append(self.cat_nodes["state"],
|
||||||
|
|
Loading…
Reference in New Issue