chiark / gitweb /
Possible fix for #630, need to verify on Mac and Linux (no problems on windows so...
authordaid <daid303@gmail.com>
Wed, 27 Nov 2013 11:23:59 +0000 (12:23 +0100)
committerdaid <daid303@gmail.com>
Wed, 27 Nov 2013 11:23:59 +0000 (12:23 +0100)
Cura/gui/configBase.py

index 3cf6a1d0eaf87abe149a241738330025173f4e21..a6c45a9f9f38ae98112c50e63fd676134b6ec562 100644 (file)
@@ -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)