From 5794c96b8f4078167ba0452d67d7cc6ffd9244be Mon Sep 17 00:00:00 2001 From: Nico Alt <nicoalt@posteo.org> Date: Thu, 23 Jan 2020 12:05:03 +0100 Subject: [PATCH] Properly shutdown api The quit function was actually never called before. That was the reason why the Java background process never stopped. --- briar-gtk/briar_gtk/application.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/briar-gtk/briar_gtk/application.py b/briar-gtk/briar_gtk/application.py index b30cb81..f9c6d78 100644 --- a/briar-gtk/briar_gtk/application.py +++ b/briar-gtk/briar_gtk/application.py @@ -35,7 +35,7 @@ class Application(Gtk.Application): self._setup_window() # pylint: disable=arguments-differ - def quit(self): + def do_shutdown(self): self.api.stop() self._window.hide() Gio.Application.quit(self) -- GitLab