X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/299647acac7960652aadb008775429c1f8ea9b8d..0ffb2aa6e47721eebc485931efaad028b51b0565:/wxPython/demo/StatusBar.py

diff --git a/wxPython/demo/StatusBar.py b/wxPython/demo/StatusBar.py
index 0d1cd90880..64aaf4c848 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)