Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/score.py
diff options
context:
space:
mode:
authorMuriel de Souza Godoi <muriel@laptop.org>2007-10-29 11:06:02 (GMT)
committer Muriel de Souza Godoi <muriel@laptop.org>2007-10-29 11:06:02 (GMT)
commit5778152f01cf35e25f2f94619c1c9d8907503c46 (patch)
tree461738705d870bbf9c1b7f73639566c3d6923cc0 /score.py
parent84acb4de8ca9fa0663b9de35df150cc99d49062a (diff)
Send game files over tubes do the other players
Diffstat (limited to 'score.py')
-rwxr-xr-xscore.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/score.py b/score.py
index 1ee1028..74e68b6 100755
--- a/score.py
+++ b/score.py
@@ -30,7 +30,7 @@ class Score(svglabel.SvgLabel):
default_color = "#4c4d4f"
status = False
- def __init__(self, fill_color, stroke_color, pixbuf= None, pixbuf_sel = None,status= False):
+ def __init__(self, fill_color, stroke_color, pixbuf= None, pixbuf_sel = None, status= False):
filename = os.path.join(os.path.dirname(__file__), "images/score.svg")
self.pixbuf_un = pixbuf
self.pixbuf_sel = pixbuf_sel
@@ -51,10 +51,10 @@ class Score(svglabel.SvgLabel):
self.status = status
if status:
self.pixbuf = self.pixbuf_sel
- self.modify_bg(gtk.STATE_NORMAL,gtk.gdk.color_parse(self.selected_color))
+ self.modify_bg(gtk.STATE_NORMAL, gtk.gdk.color_parse(self.selected_color))
else:
self.pixbuf = self.pixbuf_un
- self.modify_bg(gtk.STATE_NORMAL,gtk.gdk.color_parse(self.default_color))
+ self.modify_bg(gtk.STATE_NORMAL, gtk.gdk.color_parse(self.default_color))
self.queue_draw()
def get_pixbuf_un(self):