Use Python AUI implementation (instead of C++) in hooke.ui.gui.
[hooke.git] / hooke / ui / gui / panel / notebook.py
index c5217835a9aed09e05801217aca37595bfa16732..b507e7108165abf55f4694a8c665dd1711045a10 100644 (file)
@@ -18,7 +18,8 @@
 """Notebook panel for Hooke.
 """
 
-import wx.aui as aui
+#import wx.aui as aui         # C++ implementation
+import wx.lib.agw.aui as aui  # Python implementation
 
 from . import Panel
 from .welcome import WelcomeWindow