Changeset 2716
- Timestamp:
- 01/18/2007 08:10:19 AM (2 years ago)
- Files:
-
- branches/stable/AUTHORS (modified) (1 diff)
- branches/stable/ChangeLog (modified) (2 diffs)
- branches/stable/dabo/ui/uiwx/dFormMixin.py (modified) (2 diffs)
- tags/dabo-0.7.2 (deleted)
- trunk/ChangeLog (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/stable/AUTHORS
r2412 r2716 11 11 Stefano Masini 12 12 Adi J. Sieker 13 Carl Karsten 14 Nate Lowrie 15 Uwe Grauer 16 Simen Haugen 13 17 14 18 branches/stable/ChangeLog
r2683 r2716 2 2 3 3 =============================================================================== 4 Dabo 0.7.2 (2007-01-1 5) (Revision 2683):4 Dabo 0.7.2 (2007-01-18) (Revision 2716): 5 5 6 6 Additions, all minor, backported to stable only to keep compatibility with the … … 13 13 + Fixed the stable branch to work with wxPython 2.7 and 2.8, which was a fairly 14 14 large backport of relevant changes from the development trunk. 15 + Fixed a form activation problem that would happen in some cases on Windows, 16 particularly with the Class Designer. 15 17 + Fixed incremental search in dGrid, which was broken by earlier unicode fixes. 16 18 + dBizobj.onSaveNew() user hook never being called. Fixed. branches/stable/dabo/ui/uiwx/dFormMixin.py
r2693 r2716 129 129 self._skipActivate = False 130 130 else: 131 dabo.ui.callAfter(self.raiseEvent, dEvents.Activate, evt) 131 # Restore the saved size and position, which can't happen 132 # in __init__ because we may not have our name yet. 133 try: 134 restoredSP = self.restoredSP 135 except: 136 restoredSP = False 137 if not restoredSP: 138 if self.SaveRestorePosition: 139 self.restoreSizeAndPosition() 140 141 self.raiseEvent(dEvents.Activate, evt) 132 142 self._skipActivate = (self.Application.Platform == "Win") 133 143 else: … … 137 147 138 148 def __onActivate(self, evt): 139 # Restore the saved size and position, which can't happen140 # in __init__ because we may not have our name yet.141 try:142 restoredSP = self.restoredSP143 except:144 restoredSP = False145 if not restoredSP:146 if self.SaveRestorePosition:147 self.restoreSizeAndPosition()148 149 149 # If the ShowStatusBar property was set to True, this will create it 150 150 sb = self.StatusBar trunk/ChangeLog
r2684 r2716 2 2 3 3 =============================================================================== 4 Dabo 0.7.2 (2007-01-1 5) (Revision 2683):4 Dabo 0.7.2 (2007-01-18) (Revision 2716): 5 5 6 6 Additions, all minor, backported to stable only to keep compatibility with the … … 13 13 + Fixed the stable branch to work with wxPython 2.7 and 2.8, which was a fairly 14 14 large backport of relevant changes from the development trunk. 15 + Fixed a form activation problem that would happen in some cases on Windows, 16 particularly with the Class Designer. 15 17 + Fixed incremental search in dGrid, which was broken by earlier unicode fixes. 16 18 + dBizobj.onSaveNew() user hook never being called. Fixed.
