From 5778152f01cf35e25f2f94619c1c9d8907503c46 Mon Sep 17 00:00:00 2001 From: Muriel de Souza Godoi Date: Mon, 29 Oct 2007 11:06:02 +0000 Subject: Send game files over tubes do the other players --- (limited to 'score.py') 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): -- cgit v0.9.1