Changeset 2990
- Timestamp:
- 03/27/07 14:41:27 (2 years ago)
- Files:
-
- trunk/dabo/ui/uiwx/dTreeView.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/dabo/ui/uiwx/dTreeView.py
r2977 r2990 262 262 263 263 BackColor = property(_getBackColor, _setBackColor, None, 264 _("Background color of this node ( wx.Colour)") )264 _("Background color of this node (str, 3-tuple, or wx.Colour)") ) 265 265 266 266 Caption = property(_getCap, _setCap, None, … … 301 301 302 302 ForeColor = property(_getForeColor, _setForeColor, None, 303 _("Foreground (text) color of this node ( wx.Colour)") )303 _("Foreground (text) color of this node (str, 3-tuple, or wx.Colour)") ) 304 304 305 305 FullCaption = property(_getFullCaption, None, None, … … 455 455 """ 456 456 self.lockDisplay() 457 sel = self.Selection 457 458 ndExp = [(nd, nd.Expanded) for nd in self.nodes 458 459 459 if ((not nd.IsRootNode) or self.ShowRootNode)] 460 460 self.collapseAll() 461 461 for nd, exp in ndExp: 462 462 nd.Expanded = exp 463 self.Selection = sel 463 464 self.unlockDisplay() 464 465
