From: daid Date: Wed, 27 Nov 2013 11:23:59 +0000 (+0100) Subject: Possible fix for #630, need to verify on Mac and Linux (no problems on windows so... X-Git-Tag: 14.01~57 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=5ba98cca73146bd907d1d74baee162d09d3d33ac;p=cura.git Possible fix for #630, need to verify on Mac and Linux (no problems on windows so far) --- diff --git a/Cura/gui/configBase.py b/Cura/gui/configBase.py index 3cf6a1d0..a6c45a9f 100644 --- a/Cura/gui/configBase.py +++ b/Cura/gui/configBase.py @@ -19,7 +19,8 @@ class configPanelBase(wx.Panel): self.popup = wx.PopupWindow(self, flags=wx.BORDER_SIMPLE) self.popup.SetBackgroundColour(wx.SystemSettings.GetColour(wx.SYS_COLOUR_INFOBK)) self.popup.setting = None - self.popup.text = wx.StaticText(self.popup, -1, ''); + self.popup.text = wx.StaticText(self.popup, -1, '') + self.popup.text.SetForegroundColour(wx.SystemSettings.GetColour(wx.SYS_COLOUR_INFOTEXT)) self.popup.sizer = wx.BoxSizer() self.popup.sizer.Add(self.popup.text, flag=wx.EXPAND|wx.ALL, border=1) self.popup.SetSizer(self.popup.sizer)