From 383604715cfbaccf70f05bc7119b8d5a9c5ba2e6 Mon Sep 17 00:00:00 2001 From: HomeWorld Date: Fri, 12 Nov 2010 16:19:01 +0200 Subject: [PATCH] Disabled efx --- miniframe.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/miniframe.py b/miniframe.py index cb4ffdb35..314ecbf82 100755 --- a/miniframe.py +++ b/miniframe.py @@ -737,7 +737,7 @@ class PFTabsContainer(wx.Window): width = tab.tabWidth - self.inclination*2 posx, posy = tab.GetPosition() if not tab.IsSelected(): - mdc.DrawBitmap(self.efxBmp, posx, posy - 1, True ) +# mdc.DrawBitmap(self.efxBmp, posx, posy - 1, True ) # img = tab.Render().ConvertToImage() # img = img.AdjustChannels(1, 1, 1, 0.8) # bmp = wx.BitmapFromImage(img) @@ -746,7 +746,7 @@ class PFTabsContainer(wx.Window): selected = tab if selected: posx, posy = selected.GetPosition() - mdc.DrawBitmap(self.efxBmp, posx, posy - 1, True) +# mdc.DrawBitmap(self.efxBmp, posx, posy - 1, True) bmp = selected.Render() if self.dragging: img = bmp.ConvertToImage()