Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/stopwatch.py
diff options
context:
space:
mode:
Diffstat (limited to 'stopwatch.py')
-rw-r--r--stopwatch.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/stopwatch.py b/stopwatch.py
index ddb4c3c..632beb7 100644
--- a/stopwatch.py
+++ b/stopwatch.py
@@ -424,6 +424,8 @@ 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)
self.display = gtk.VBox()
@@ -431,7 +433,9 @@ class GUIView():
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()
def get_names(self):
return [n.get_value() for n in self._names]