Changeset 1290
- Timestamp:
- 05/21/07 07:28:02 (2 years ago)
- Files:
-
- gaphor/trunk/gaphor/ui/mainwindow.py (modified) (2 diffs)
- gaphor/trunk/gaphor/ui/toolbox.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
gaphor/trunk/gaphor/ui/mainwindow.py
r1289 r1290 299 299 attribute that can be used to fetch the action from the ui manager. 300 300 """ 301 return302 301 for button in self._toolbox.buttons: 303 302 … … 423 422 424 423 def _insensivate_toolbox(self): 425 for button in self. toolbox.buttons:424 for button in self._toolbox.buttons: 426 425 button.set_property('sensitive', False) 427 426 gaphor/trunk/gaphor/ui/toolbox.py
r1289 r1290 133 133 self.buttons.append(button) 134 134 wrapbox.add(button) 135 button.show() 135 136 if title: 136 137 wrapbox_dec = self.make_wrapbox_decorator(title, wrapbox)
