You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
all recently acquired an __init__ parameter that is the Tree they're related to; this was done to service the addition of control properties on all of those messages. That parameter isn't really necessary because each message knows about its node and the node knows its tree. So control can be written like this:
defcontrol(self) ->Tree:
returnself.node.tree
The text was updated successfully, but these errors were encountered:
The following
Tree
messages:Tree.NodeCollapsed
Tree.NodeExpanded
Tree.NodeHighlighted
Tree.NodeSelected
DirectoryTree.FileSelected
all recently acquired an
__init__
parameter that is theTree
they're related to; this was done to service the addition ofcontrol
properties on all of those messages. That parameter isn't really necessary because each message knows about its node and the node knows its tree. Socontrol
can be written like this:The text was updated successfully, but these errors were encountered: