Changeset 4126
- Timestamp:
- 06/11/08 12:20:35 (5 months ago)
- Files:
-
- trunk/dabo/ui/uiwx/dGrid.py (modified) (1 diff)
- trunk/ide/ClassDesignerControlMixin.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/dabo/ui/uiwx/dGrid.py
r4101 r4126 4332 4332 4333 4333 def _getShowColumnLabels(self): 4334 return self._showColumnLabels 4334 if hasattr(self, "_showColumnLabels"): 4335 v = self._showColumnLabels 4336 else: 4337 v = self._showColumnLabels = True 4338 return v 4335 4339 4336 4340 def _setShowColumnLabels(self, val): trunk/ide/ClassDesignerControlMixin.py
r4122 r4126 743 743 "values" : ["Cell", "Row", "Column"]}, 744 744 "Sortable": {"type" : bool, "readonly" : False}, 745 "ShowColumnLabels":{"type" : bool, "readonly" : False}, 745 746 "ShowRowLabels" : {"type" : bool, "readonly" : False}} 746 747 imageProps = {"ScaleMode" : {"type" : list, "readonly" : False,
