From f6af41194211bbea199c379853923b44a252d785 Mon Sep 17 00:00:00 2001 From: HomeWorld Date: Fri, 3 Dec 2010 10:04:06 +0200 Subject: [PATCH] Use default attribs (bg color) to draw tabs bk --- gui/chromeTabs.py | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/gui/chromeTabs.py b/gui/chromeTabs.py index 1e04d1e37..55f9d2973 100644 --- a/gui/chromeTabs.py +++ b/gui/chromeTabs.py @@ -980,14 +980,10 @@ class PFTabsContainer(wx.Panel): mdc.SelectObject(canvas) selected = 0 - # TODO - # This is a hack because on mac os the system colour constants are somehow wrong, - # additionally somehow the colors get changed when drawing (all RGB values are off by 4) - # TODO - if 'wxMac' in wx.PlatformInfo: - color = wx.Colour(232, 232, 232) - else: - color = wx.SystemSettings_GetColour(wx.SYS_COLOUR_3DFACE) + + vattr = self.GetDefaultAttributes() + color = vattr.colBg + mdc.SetBackground (wx.Brush(color)) # mdc.SetBackground (wx.Brush((66,113,202)))