]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/StatusBar.py
Other doc updates
[wxWidgets.git] / wxPython / demo / StatusBar.py
index 0d1cd908803499d781621471d55c1264135567b1..6cfa844648d562d3f9f3895fa9194764a5580dad 100644 (file)
@@ -1,7 +1,3 @@
-# 11/21/2003 - Jeff Grimmett (grimmtooth@softhome.net)
-#
-# o Updated for wx namespace
-# 
 
 import  time
 import  wx
@@ -14,6 +10,8 @@ class CustomStatusBar(wx.StatusBar):
 
         # This status bar has three fields
         self.SetFieldsCount(3)
+        # Sets the three fields to be relative widths to each other.
+        self.SetStatusWidths([-2, -1, -2])
         self.log = log
         self.sizeChanged = False
         self.Bind(wx.EVT_SIZE, self.OnSize)
@@ -121,4 +119,4 @@ field has a clock that shows the current time when it is enabled.
 if __name__ == '__main__':
     import sys,os
     import run
-    run.main(['', os.path.basename(sys.argv[0])])
+    run.main(['', os.path.basename(sys.argv[0])] + sys.argv[1:])