From 313836bd7a5ed4d7e719e8af4d7848cf98e7afe1 Mon Sep 17 00:00:00 2001 From: cncfanatics Date: Sun, 15 Aug 2010 20:26:13 +0200 Subject: [PATCH] Add a minimum width to the gauges in our statsPane --- gui/statsPane.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gui/statsPane.py b/gui/statsPane.py index 9800c8e60..fed52c2f3 100644 --- a/gui/statsPane.py +++ b/gui/statsPane.py @@ -115,6 +115,7 @@ class StatsPane(wx.Panel): absolute.Add(lbl, 0, wx.ALIGN_CENTER) gauge = wx.Gauge(self, wx.ID_ANY, 100) + gauge.SetMinSize((100, -1)) setattr(self, "gauge%s" % capitalizedType, gauge) stats.Add(gauge)