X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/13db99f1f56f8985adf9f3bdc6f1b68d4a358b94..aeffa0721d3fd59441de22c19b90eae39347911f:/wxPython/demo/Main.py diff --git a/wxPython/demo/Main.py b/wxPython/demo/Main.py index 9dfdafc9b0..af5bae2178 100644 --- a/wxPython/demo/Main.py +++ b/wxPython/demo/Main.py @@ -75,6 +75,8 @@ _treeList = [ 'BitmapComboBox', 'I18N', 'Img2PyArtProvider', + 'SearchCtrl', + 'SizedControls', ]), # managed windows == things with a (optional) caption you can close @@ -132,6 +134,7 @@ _treeList = [ 'RadioButton', 'SashWindow', 'ScrolledWindow', + 'SearchCtrl', 'Slider', 'SpinButton', 'SpinCtrl', @@ -228,6 +231,7 @@ _treeList = [ 'Layoutf', 'RowColSizer', 'ScrolledPanel', + 'SizedControls', 'Sizers', 'XmlResource', 'XmlResourceHandler', @@ -1217,7 +1221,7 @@ class wxPythonDemo(wx.Frame): # Make a Demo menu menu = wx.Menu() - for item in _treeList: + for item in _treeList[:-1]: submenu = wx.Menu() for childItem in item[1]: mi = submenu.Append(-1, childItem)