diff options
author | Milan Crha <mcrha@redhat.com> | 2014-03-27 19:19:21 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2014-03-27 19:19:21 +0800 |
commit | d19f306eb81bf0582c84ae8c7055e39c323fae4f (patch) | |
tree | 8d884f5c3401bbddc30046ab266c4c6cdb5b7600 /shell | |
parent | 514d18ee0a26c4b8e4258be2302bb2adf459a89d (diff) | |
download | gsoc2013-evolution-d19f306eb81bf0582c84ae8c7055e39c323fae4f.tar gsoc2013-evolution-d19f306eb81bf0582c84ae8c7055e39c323fae4f.tar.gz gsoc2013-evolution-d19f306eb81bf0582c84ae8c7055e39c323fae4f.tar.bz2 gsoc2013-evolution-d19f306eb81bf0582c84ae8c7055e39c323fae4f.tar.lz gsoc2013-evolution-d19f306eb81bf0582c84ae8c7055e39c323fae4f.tar.xz gsoc2013-evolution-d19f306eb81bf0582c84ae8c7055e39c323fae4f.tar.zst gsoc2013-evolution-d19f306eb81bf0582c84ae8c7055e39c323fae4f.zip |
Bug #726654 - Search bar's filter change may not steal keyboard focus
Diffstat (limited to 'shell')
-rw-r--r-- | shell/e-shell-searchbar.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/shell/e-shell-searchbar.c b/shell/e-shell-searchbar.c index 2c070cfd5d..3339a63091 100644 --- a/shell/e-shell-searchbar.c +++ b/shell/e-shell-searchbar.c @@ -332,17 +332,10 @@ shell_searchbar_filter_changed_cb (GtkComboBox *filter_combo_box, EShellSearchbar *searchbar) { EShellView *shell_view; - EShellContent *shell_content; shell_view = e_shell_searchbar_get_shell_view (searchbar); e_shell_view_execute_search (shell_view); - - /* Direct the focus away from the filter combo box so the - * next keyboard event doesn't change the selected filter. - * The user is probably trying to navigate search results. */ - shell_content = e_shell_view_get_shell_content (shell_view); - e_shell_content_focus_search_results (shell_content); } static void |