diff --git a/widgets/gogame.py b/widgets/gogame.py index 11b31b7..88e5a58 100644 --- a/widgets/gogame.py +++ b/widgets/gogame.py @@ -114,8 +114,6 @@ class GoGame(gtk.HBox): def do_board_configure(self, widget, event): - print 'configure' - gc = widget.get_style().fg_gc[gtk.STATE_NORMAL] x,y,width,height = widget.get_allocation() self.board_backbuf = gtk.gdk.Pixmap(widget.window, width, height, depth=-1) @@ -126,8 +124,6 @@ class GoGame(gtk.HBox): def do_board_expose(self, widget, event): - print 'expose' - x , y, width, height = event.area widget.window.draw_drawable(widget.get_style().fg_gc[gtk.STATE_NORMAL], self.board_backbuf, x, y, x, y, width, height) @@ -135,8 +131,6 @@ class GoGame(gtk.HBox): def update_board(self, to_update=None): - print 'update' - if to_update == None: to_update = range(len(self.goban.board))