From dc3e0458177e631d4eebcaf10453772619000402 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niklas=20B=C3=B6lter?= Date: Sat, 20 Nov 2010 22:57:45 +0100 Subject: [PATCH] Fixed stupid oversight by dumb idiot --- gui/shipBrowser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/shipBrowser.py b/gui/shipBrowser.py index a96ba59bc..246ec4fa9 100644 --- a/gui/shipBrowser.py +++ b/gui/shipBrowser.py @@ -361,7 +361,7 @@ class HeaderPane (wx.Panel): self.sbSearch = PFGenBitmapButton( self, wx.ID_ANY, self.searchBmp, wx.DefaultPosition, bmpSize, wx.BORDER_NONE ) mainSizer.Add(self.sbSearch, 0, wx.ALL | wx.ALIGN_CENTER_VERTICAL , 5) - self.sbSearch.SetBackgroundColour( wx.Colour(0, 0, 0, 0) ) + self.sbSearch.SetBackgroundColour( bgcolour ) self.SetSizer(mainSizer)