From c9d5da1f9487b80251d4ec5c1aed00e5d3ed6f5d Mon Sep 17 00:00:00 2001 From: Ruben Pollan Date: Mon, 19 Mar 2018 10:29:51 +0100 Subject: [PATCH] On quit exit main loop on linux Close #40 --- systray_linux.c | 1 + 1 file changed, 1 insertion(+) diff --git a/systray_linux.c b/systray_linux.c index 69b90be2..40dad03e 100644 --- a/systray_linux.c +++ b/systray_linux.c @@ -157,6 +157,7 @@ gboolean do_quit(gpointer data) { } // app indicator doesn't provide a way to remove it, hide it as a workaround app_indicator_set_status(global_app_indicator, APP_INDICATOR_STATUS_PASSIVE); + gtk_main_quit(); return FALSE; }