summaryrefslogtreecommitdiff
path: root/cesar/common
diff options
context:
space:
mode:
Diffstat (limited to 'cesar/common')
-rw-r--r--cesar/common/tools/traceviewer/gui.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cesar/common/tools/traceviewer/gui.py b/cesar/common/tools/traceviewer/gui.py
index 5cf5169d47..4f218a1a9a 100644
--- a/cesar/common/tools/traceviewer/gui.py
+++ b/cesar/common/tools/traceviewer/gui.py
@@ -86,7 +86,7 @@ class Gui:
for uce, i in zip (self.user_cursor_entry,
range (len (self.user_cursor_entry))):
uce.child.i = i
- uce.child.connect ('activate', self.on_user_cursor_entry_activate)
+ uce.child.connect ('changed', self.on_user_cursor_entry_change)
ucem = gtk.ListStore (gobject.TYPE_STRING)
uce.set_model (ucem)
uce.set_text_column (0)
@@ -124,7 +124,7 @@ class Gui:
self.trace_view.zoom_set (float (self.zoom_entry.get_text ()))
self.update_zoom ()
- def on_user_cursor_entry_activate (self, entry):
+ def on_user_cursor_entry_change (self, entry):
try:
date = eval (entry.get_text ())
except: