skip the set_opacity statement in windows until figured out

This commit is contained in:
Ray 2008-11-08 16:58:24 -05:00
parent 803b9a7a64
commit 28037de7a6

View File

@ -349,7 +349,8 @@ class Stat_Window:
# font = pango.FontDescription("Sans 8")
self.label[r][c].modify_font(font)
self.window.set_opacity(parent.colors['hudopacity'])
if not os.name == 'nt': # seems to be a bug in opacity on windows
self.window.set_opacity(parent.colors['hudopacity'])
self.window.realize
self.window.move(self.x, self.y)
self.window.show_all()