diff options
| author | Ruben Pollan | 2018-03-19 10:29:51 +0100 |
|---|---|---|
| committer | Ruben Pollan | 2018-03-19 10:31:19 +0100 |
| commit | 2f06ead1617a68e5c92773656d4686289385d2d1 (patch) | |
| tree | 4ab2084d78b3e0b3636202fe9853bad3067c3a55 | |
| parent | fe4b1c6bb216a485a73414ce55047ec7ce3a9766 (diff) | |
| download | systray-2f06ead1617a68e5c92773656d4686289385d2d1.tar.bz2 | |
On quit exit main loop on linux
Close #40
| -rw-r--r-- | systray_linux.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/systray_linux.c b/systray_linux.c index 69b90be..40dad03 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; } |
