diff options
Diffstat (limited to 'src/gui_backend_local.c')
-rw-r--r-- | src/gui_backend_local.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gui_backend_local.c b/src/gui_backend_local.c index 3aee7904..b66b8840 100644 --- a/src/gui_backend_local.c +++ b/src/gui_backend_local.c @@ -267,10 +267,11 @@ static void n_processes_activate_sig(GtkEntry *entry, gpointer data) } -static void n_processes_focus_sig(GtkEntry *entry, GdkEvent *event, - gpointer data) +static gboolean n_processes_focus_sig(GtkEntry *entry, GdkEvent *event, + gpointer data) { n_processes_activate_sig(entry, data); + return FALSE; } |