aboutsummaryrefslogtreecommitdiff
path: root/src/gui_backend_local.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2020-08-27 16:40:42 +0200
committerThomas White <taw@physics.org>2020-08-27 16:40:42 +0200
commitd08b35b6607d926f03c18a80f84e04755770fc95 (patch)
tree9948259f7ae56ab6d4144aeae75e5953fba25cff /src/gui_backend_local.c
parented7883d8ee8739adfa39a5a71c1bffe2572dbb44 (diff)
Fix function prototypes and returns for focus-out-event
Diffstat (limited to 'src/gui_backend_local.c')
-rw-r--r--src/gui_backend_local.c5
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;
}