From e352eff87734a71a9fb805d71950f263145c6281 Mon Sep 17 00:00:00 2001 From: Harald Judt Date: Thu, 18 Dec 2014 23:28:56 +0100 Subject: [PATCH] Add key binding Ctrl+f for the filter entry --- src/process-window.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/process-window.c b/src/process-window.c index 748abd9..0069404 100644 --- a/src/process-window.c +++ b/src/process-window.c @@ -254,6 +254,10 @@ xtm_process_window_key_pressed (XtmProcessWindow *window, GdkEventKey *event) emit_delete_event_signal (window, (GdkEvent*) event); ret = TRUE; } + else if (event->keyval == GDK_KEY_f && event->state & GDK_CONTROL_MASK) { + gtk_widget_grab_focus (GTK_WIDGET(window->filter_entry)); + ret = TRUE; + } return ret; }