X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c4ef95daf6eeae5e6a7d4e591bb96c44f8588249..68fc5c8025e38b9d827383fbfe7ce509ae331c1f:/wxPython/demo/PopupControl.py?ds=sidebyside diff --git a/wxPython/demo/PopupControl.py b/wxPython/demo/PopupControl.py index 3cb7230171..d96e1ec7d4 100644 --- a/wxPython/demo/PopupControl.py +++ b/wxPython/demo/PopupControl.py @@ -68,14 +68,8 @@ class TestPanel(wx.Panel): #---------------------------------------------------------------------- def runTest(frame, nb, log): - if wx.Platform == "__WXMAC__": - from Main import MessagePanel - win = MessagePanel(nb, 'This demo currently fails on the Mac.', - 'Sorry', wx.ICON_WARNING) - return win - else: - win = TestPanel(nb, log) - return win + win = TestPanel(nb, log) + return win #----------------------------------------------------------------------