Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/TamTam.py
diff options
context:
space:
mode:
authorNathanaël Lécaudé <Nat@localhost.localdomain>2007-01-05 21:33:20 (GMT)
committer Nathanaël Lécaudé <Nat@localhost.localdomain>2007-01-05 21:33:20 (GMT)
commit79a2047247d3ddf6d16a78d938cdf756ca2b6089 (patch)
treef3a4e2eb77f0b31e932abd29ea5ca7c2cab4ec4e /TamTam.py
parentd08161618b84749bfc00fed6e251ce5964cd134d (diff)
White background
Diffstat (limited to 'TamTam.py')
-rwxr-xr-xTamTam.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/TamTam.py b/TamTam.py
index 74e9bd7..1df2c49 100755
--- a/TamTam.py
+++ b/TamTam.py
@@ -83,7 +83,10 @@ class TamTam(Activity):
def __init__(self):
Activity.__init__(self)
-
+
+ color = gtk.gdk.color_parse('#FFFFFF')
+ self.modify_bg(gtk.STATE_NORMAL, color)
+
self.tamtam = StandAlonePlayer(csnd)
self.connect('focus_in_event',self.handleFocusIn)
self.connect('focus_out_event',self.handleFocusOut)