Add a minimum width to the gauges in our statsPane

This commit is contained in:
cncfanatics
2010-08-15 20:26:13 +02:00
parent 8d4fea3040
commit 313836bd7a

View File

@@ -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)