valueWindow = TestValueWindow(splitter, style=wx.NO_BORDER)
- splitter.SplitVertically(tree, valueWindow, 150)
+ wx.CallAfter(splitter.SplitVertically, tree, valueWindow, 150)
scroller.SetTargetWindow(tree)
scroller.EnableScrolling(False, False)
def runTest(frame, nb, log):
if wx.Platform == "__WXMAC__":
- wx.MessageBox("This demo currently fails on the Mac. The problem is being looked into...", "Sorry")
- return
+ from Main import MessagePanel
+ win = MessagePanel(nb, 'This demo currently fails on the Mac. The problem is being looked into...',
+ 'Sorry', wx.ICON_WARNING)
+ return win
win = TestPanel(nb, log)
return win