backBrush = wx.Brush(clr, wx.SOLID)
if wx.Platform == "__WXMAC__" and clr == self.defBackClr:
# if colour is still the default then use the striped background on Mac
- backBrush.SetMacTheme(1) # 1 == kThemeBrushDialogBackgroundActive
+ backBrush.MacSetTheme(1) # 1 == kThemeBrushDialogBackgroundActive
dc.SetBackground(backBrush)
dc.SetTextForeground(self.GetForegroundColour())
x = width - w
if style & wx.ALIGN_CENTER:
x = (width - w)/2
- dc.DrawText(line, (x, y))
+ dc.DrawText(line, x, y)
y += h