diff options
| author | joesis | 2018-03-20 09:59:38 +0800 |
|---|---|---|
| committer | GitHub | 2018-03-20 09:59:38 +0800 |
| commit | b9853fa4901e22d4e213fa5d63351bab08d85718 (patch) | |
| tree | 4ab2084d78b3e0b3636202fe9853bad3067c3a55 | |
| parent | fe4b1c6bb216a485a73414ce55047ec7ce3a9766 (diff) | |
| parent | 2f06ead1617a68e5c92773656d4686289385d2d1 (diff) | |
| download | systray-b9853fa4901e22d4e213fa5d63351bab08d85718.tar.bz2 | |
Merge pull request #41 from meskio/exit_main_linux
On quit exit main loop on linux
| -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; } |
