Changeset 1487 for trunk/peppy/frame.py
- Timestamp:
- 07/10/08 22:43:13 (4 months ago)
- Files:
-
- 1 modified
-
trunk/peppy/frame.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/peppy/frame.py
r1462 r1487 77 77 78 78 class MyNotebook(wx.aui.AuiNotebook, debugmixin): 79 debuglevel = 1 80 79 81 def __init__(self, parent, size=wx.DefaultSize): 80 82 wx.aui.AuiNotebook.__init__(self, parent, size=size, style=wx.aui.AUI_NB_WINDOWLIST_BUTTON|wx.aui.AUI_NB_TAB_MOVE|wx.aui.AUI_NB_TAB_SPLIT|wx.aui.AUI_NB_CLOSE_BUTTON|wx.aui.AUI_NB_SCROLL_BUTTONS, pos=(9000,9000)) … … 100 102 self.lastActivePage=None 101 103 page=self.GetPage(newpage) 102 wx.CallAfter(self.frame.switchMode) 104 #wx.CallAfter(self.frame.switchMode) 105 self.frame.switchMode() 103 106 evt.Skip() 104 107 … … 322 325 323 326 class BufferFrame(wx.Frame, ClassPrefs, debugmixin): 327 debuglevel = 1 324 328 frameid=0 325 329 load_error_count = 0
