From 5ba98cca73146bd907d1d74baee162d09d3d33ac Mon Sep 17 00:00:00 2001 From: daid Date: Wed, 27 Nov 2013 12:23:59 +0100 Subject: [PATCH] Possible fix for #630, need to verify on Mac and Linux (no problems on windows so far) --- Cura/gui/configBase.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) -- 2.30.2