Skip to content
Snippets Groups Projects
Commit 00b07f24 authored by mcmlxxix's avatar mcmlxxix
Browse files

added missing TreeItem.status getter (fixes disabled items)

parent 022329e3
Branches
Tags
No related merge requests found
......@@ -763,6 +763,9 @@ function TreeItem(text,parent,func,args) {
this.__defineGetter__("attr",function() {
return properties.attr;
});
this.__defineGetter__("status",function() {
return properties.status;
});
this.__defineGetter__("hash",function() {
return properties.parent.hash+"\t"+properties.text;
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment