]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/Main.py
Point x,y fixes from Pierre
[wxWidgets.git] / wxPython / demo / Main.py
index d14fdf4883373321889bf0952af2054a43c5bd75..37b4fa8b837c4e984905024030ee69bad00bb895 100644 (file)
@@ -47,8 +47,8 @@ import images
 _treeList = [
     # new stuff
     ('Recent Additions/Updates', [
-        'OGL',
-        'FloatCanvas',
+        'StockButtons',
+        'Ticker',
         ]),
 
     # managed windows == things with a (optional) caption you can close
@@ -112,6 +112,7 @@ _treeList = [
         'StaticBitmap',
         'StaticText',
         'StatusBar',
+        'StockButtons',
         'TextCtrl',
         'ToggleButton',
         'ToolBar',
@@ -162,6 +163,7 @@ _treeList = [
         'StyledTextCtrl_2',
         'TablePrint',
         'Throbber',
+        'Ticker',
         'TimeCtrl',
         'VListBox',
         ]),
@@ -483,7 +485,8 @@ class DemoCodePanel(wx.Panel):
     """Panel for the 'Demo Code' tab"""
     def __init__(self, parent, mainFrame):
         wx.Panel.__init__(self, parent, size=(1,1))
-        self.Hide()
+        if 'wxMSW' in wx.PlatformInfo:
+            self.Hide()
         self.mainFrame = mainFrame
         self.editor = DemoCodeEditor(self)
         self.editor.RegisterModifiedEvent(self.OnCodeModified)