From 8985e3a830df5524011d2e576ccbc4cc201d1030 Mon Sep 17 00:00:00 2001 From: HomeWorld Date: Fri, 3 Sep 2010 13:38:00 +0300 Subject: [PATCH] Fixed alignment of hardpoints/calib statictext sizer ->aligned to left --- gui/statsPane.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/statsPane.py b/gui/statsPane.py index 58e4463e8..3c9eac4cc 100644 --- a/gui/statsPane.py +++ b/gui/statsPane.py @@ -313,7 +313,7 @@ class StatsPane(wx.Panel): box = wx.BoxSizer(wx.HORIZONTAL) sizer.Add(bitmap, 0, wx.ALIGN_CENTER) - sizer.Add(box, 0, wx.ALIGN_CENTER) + sizer.Add(box, 0, wx.ALIGN_CENTER_VERTICAL) suffix = "Points" if type == "calibration" else "Hardpoints" lbl = wx.StaticText(parent, wx.ID_ANY, "0")