]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/Main.py
don't apply tab control background when using wxUniv, it renders background itself
[wxWidgets.git] / wxPython / demo / Main.py
index 8c9b6d4ab11594376bfb77cdb23cef9014d4990d..458c1a713acb804719e703a2be2e3aa6989d6894 100644 (file)
@@ -47,10 +47,7 @@ import images
 _treeList = [
     # new stuff
     ('Recent Additions/Updates', [
-        'StockButtons',
-        'Ticker',
-        'Choicebook',
-        'ListCtrl_edit',
+        'StandardPaths',
         ]),
 
     # managed windows == things with a (optional) caption you can close
@@ -228,6 +225,7 @@ _treeList = [
         'PrintFramework',
         'ShapedWindow',
         'Sound',
+        'StandardPaths',
         'Unicode',
         ]),
 
@@ -254,9 +252,10 @@ class MyLog(wx.PyLog):
         self.logTime = logTime
 
     def DoLogString(self, message, timeStamp):
-        if self.logTime:
-            message = time.strftime("%X", time.localtime(timeStamp)) + \
-                      ": " + message
+        #print message, timeStamp
+        #if self.logTime:
+        #    message = time.strftime("%X", time.localtime(timeStamp)) + \
+        #              ": " + message
         if self.tc:
             self.tc.AppendText(message + '\n')