diff options
author | Will Thompson <will.thompson@collabora.co.uk> | 2011-03-18 19:19:34 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-03-18 21:49:18 +0800 |
commit | 87fe6f3680d91edc933bc767cae6e500b8bac011 (patch) | |
tree | 06bc8c699d9e970ba6a1251555a858190bb2a393 | |
parent | 5719134cc2ecacb5076c9e8133feb8473979b5f5 (diff) | |
download | gsoc2013-empathy-87fe6f3680d91edc933bc767cae6e500b8bac011.tar gsoc2013-empathy-87fe6f3680d91edc933bc767cae6e500b8bac011.tar.gz gsoc2013-empathy-87fe6f3680d91edc933bc767cae6e500b8bac011.tar.bz2 gsoc2013-empathy-87fe6f3680d91edc933bc767cae6e500b8bac011.tar.lz gsoc2013-empathy-87fe6f3680d91edc933bc767cae6e500b8bac011.tar.xz gsoc2013-empathy-87fe6f3680d91edc933bc767cae6e500b8bac011.tar.zst gsoc2013-empathy-87fe6f3680d91edc933bc767cae6e500b8bac011.zip |
Map Ctrl-Shift-F to contact search and Ctrl-F to find
As discussed on <https://bugzilla.gnome.org/show_bug.cgi?id=645121>,
currently Ctrl-F opens the contact search dialog, and there's no
keyboard shortcut for searching within the contact list (other than just
typing). The Gnome HIG handles this situation: it says that the former
should be Ctrl-Shift-F and the latter should be Ctrl-F.
<http://library.gnome.org/devel/hig-book/2.32/input-keyboard.html.en#standard-shortcuts>
-rw-r--r-- | src/empathy-main-window.ui | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/empathy-main-window.ui b/src/empathy-main-window.ui index 217b276f2..864be1d28 100644 --- a/src/empathy-main-window.ui +++ b/src/empathy-main-window.ui @@ -47,6 +47,7 @@ <property name="name">chat_search_contacts</property> <property name="label" translatable="yes">_Search for Contacts…</property> </object> + <accelerator key="f" modifiers="GDK_SHIFT_MASK | GDK_CONTROL_MASK"/> </child> <child> <object class="GtkAction" id="view_show_ft_manager"> @@ -124,6 +125,7 @@ <property name="name">edit_search_contacts</property> <property name="label" translatable="yes">Find in Contact _List</property> </object> + <accelerator key="f" modifiers="GDK_CONTROL_MASK"/> </child> <child> <object class="GtkAction" id="view"> |