Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/readactivity.py
diff options
context:
space:
mode:
authorGonzalo Odiard <godiard@gmail.com>2012-04-10 15:13:55 (GMT)
committer Gonzalo Odiard <godiard@gmail.com>2012-04-10 15:13:55 (GMT)
commit0233cf6009d6307f2ffc658c3fdf14d3ebbb2872 (patch)
tree56641b8dfa7822163cbfde5b04b1272a72c254b6 /readactivity.py
parenta4658205589684e4649a269f8aac45fdbdfc137d (diff)
Fix to previous: Enable use of arrow keys in the title entry - SL #3001
Signed-off-by: Gonzalo Odiard <gonzalo@laptop.org>
Diffstat (limited to 'readactivity.py')
-rw-r--r--readactivity.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/readactivity.py b/readactivity.py
index f36a76e..72db01e 100644
--- a/readactivity.py
+++ b/readactivity.py
@@ -932,7 +932,7 @@ class ReadActivity(activity.Activity):
self._view.copy()
def _key_press_event_cb(self, widget, event):
- if self.activity_button.page.title_button.has_focus():
+ if self.activity_button.page.title.has_focus():
return False
keyname = Gdk.keyval_name(event.keyval)
if keyname == 'c' and event.state & Gdk.CONTROL_MASK: