From 262840252a1c3c2017ce83eb211c1f420f732e72 Mon Sep 17 00:00:00 2001 From: cncfanatics Date: Sat, 28 Aug 2010 15:16:53 +0200 Subject: [PATCH] Fix a bug that prevented padding from working --- gui/statsPane.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/statsPane.py b/gui/statsPane.py index f6b1d3753..5e026eb5b 100644 --- a/gui/statsPane.py +++ b/gui/statsPane.py @@ -227,7 +227,7 @@ class StatsPane(wx.Panel): box.Add(lbl, 0, wx.ALIGN_LEFT) st = wx.VERTICAL if panel == "full" else wx.HORIZONTAL - base.Add(wx.StaticLine(parent, wx.ID_ANY, style=st), 0, wx.EXPAND, wx.LEFT, 3 if panel == "full" else 0) + base.Add(wx.StaticLine(parent, wx.ID_ANY, style=st), 0, wx.EXPAND | wx.LEFT, 3 if panel == "full" else 0) #PG, Cpu & drone stuff