diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-06-06 01:52:25 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-06-06 01:52:25 +0800 |
commit | a15a2953237e02bd69005ea5c39e0d3d45e95cb9 (patch) | |
tree | d9eb219d002ee8efc64e3a20afc90cf7ec7d44bb /mail | |
parent | b3cdfb6bad5cad0932b02fa049da0fcab66a9603 (diff) | |
download | gsoc2013-evolution-a15a2953237e02bd69005ea5c39e0d3d45e95cb9.tar gsoc2013-evolution-a15a2953237e02bd69005ea5c39e0d3d45e95cb9.tar.gz gsoc2013-evolution-a15a2953237e02bd69005ea5c39e0d3d45e95cb9.tar.bz2 gsoc2013-evolution-a15a2953237e02bd69005ea5c39e0d3d45e95cb9.tar.lz gsoc2013-evolution-a15a2953237e02bd69005ea5c39e0d3d45e95cb9.tar.xz gsoc2013-evolution-a15a2953237e02bd69005ea5c39e0d3d45e95cb9.tar.zst gsoc2013-evolution-a15a2953237e02bd69005ea5c39e0d3d45e95cb9.zip |
Bug 620602 - Next/prev shortcuts should focus message list
Diffstat (limited to 'mail')
-rw-r--r-- | mail/message-list.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mail/message-list.c b/mail/message-list.c index ee80748e6f..2de21bf558 100644 --- a/mail/message-list.c +++ b/mail/message-list.c @@ -631,6 +631,12 @@ message_list_select(MessageList *ml, MessageListSelectDirection direction, guint path = ml_search_path(ml, direction, flags, mask); if (path) { select_path(ml, path); + + /* This function is usually called in response to a key + * press, so grab focus if the message list is visible. */ + if (gtk_widget_get_visible (GTK_WIDGET (ml))) + gtk_widget_grab_focus (GTK_WIDGET (ml)); + return TRUE; } else return FALSE; |