Changeset 4083
- Timestamp:
- 05/12/08 13:11:03 (3 months ago)
- Files:
-
- trunk/dabo/ui/uiwx/dTreeView.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/dabo/ui/uiwx/dTreeView.py
r4059 r4083 550 550 for n in nds: 551 551 self.collapse(n) 552 553 552 553 554 def expandBranch(self, nd): 555 """Expands the specified node, as well as any of its child nodes.""" 556 self.ExpandAllChildren(nd.itemID) 557 558 559 def collapseBranch(self, nd): 560 """Collapses the specified node, as well as any of its child nodes.""" 561 self.CollapseAllChildren(nd.itemID) 562 563 554 564 def showNode(self, node): 555 565 self.EnsureVisible(node.itemID)
