Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/record.py
diff options
context:
space:
mode:
authorDaniel Drake <dsd@laptop.org>2011-03-04 19:40:10 (GMT)
committer Daniel Drake <dsd@laptop.org>2011-03-04 19:43:46 (GMT)
commit515df3f356742c273ef10110d76fc3f7ad26c1f0 (patch)
tree719d836442c65023d6460cf44aec26759fc1d3b1 /record.py
parent5346e4c00912b040c61e8b08e2fcbec16e49eb98 (diff)
Connect keypress handler after default handlers
Pressing the 'i' key while changing activity title would cause the information box to trigger. Fixes http://dev.laptop.org/ticket/10710
Diffstat (limited to 'record.py')
-rw-r--r--record.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/record.py b/record.py
index 36d6aad..d957421 100644
--- a/record.py
+++ b/record.py
@@ -108,7 +108,7 @@ class Record(activity.Activity):
# have to track which recd is active
self._active_recd = None
- self.connect('key-press-event', self._key_pressed)
+ self.connect_after('key-press-event', self._key_pressed)
self._active_toolbar_idx = 0
self._toolbox = activity.ActivityToolbox(self)