Do not superman stuff if we are on wxmac

This commit is contained in:
HomeWorld
2010-11-17 17:21:34 +02:00
parent b14982c1c5
commit cd3ba59b62

View File

@@ -950,7 +950,8 @@ class PFTabsContainer(wx.Panel):
simg = fxBmp.ConvertToImage()
if not simg.HasAlpha():
simg.InitAlpha()
simg = simg.Blur(2)
if 'wxMAC' not in wx.PlatformInfo:
simg = simg.Blur(2)
simg = simg.AdjustChannels(0.3,0.3,0.3,0.3)
self.efxBmp = wx.BitmapFromImage(simg)