From 731630b15e8494955c18e6772254f3c4329bca6a Mon Sep 17 00:00:00 2001 From: Andrew Tan Date: Tue, 04 Dec 2012 02:27:57 +0000 Subject: use game-buttons and fix formatting --- diff --git a/stopwatch.py b/stopwatch.py index 632beb7..932aa10 100644 --- a/stopwatch.py +++ b/stopwatch.py @@ -424,18 +424,18 @@ class GUIView(): marks_model = dobject.AddOnlySet(marks_handler, translator = dobject.float_translator) self._markers.append(marks_model) watch_view = OneWatchView(watch_model, name_model, marks_model, timer) - if i==0: - gobject.timeout_add(100,self.initfocus,watch_view) - self._views.append(watch_view) - + if i==0: + gobject.timeout_add(100,self.initfocus,watch_view) + self._views.append(watch_view) self.display = gtk.VBox() for x in self._views: self.display.pack_start(x.display, expand=True, fill=True) - self._pause_lock = threading.Lock() + def initfocus(self,watch_view): - watch_view._got_focus_cb(None, None) - watch_view._time_label.grab_focus() + watch_view._got_focus_cb(None, None) + watch_view._time_label.grab_focus() + def get_names(self): return [n.get_value() for n in self._names] -- cgit v0.9.1