X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/299647acac7960652aadb008775429c1f8ea9b8d..49bffb1482cd2a6a30b38280f6c9bffc72dbfe42:/wxPython/demo/StatusBar.py diff --git a/wxPython/demo/StatusBar.py b/wxPython/demo/StatusBar.py index 0d1cd90880..6cfa844648 100644 --- a/wxPython/demo/StatusBar.py +++ b/wxPython/demo/StatusBar.py @@ -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:])