From ccaf759deaac25ef03a63988a50da65a9c8bfee3 Mon Sep 17 00:00:00 2001 From: Lynne Date: Mon, 24 Aug 2020 01:23:09 +1000 Subject: [PATCH] fixed the quit dialogue not being cancellable --- buypeeb.py | 1 + 1 file changed, 1 insertion(+) diff --git a/buypeeb.py b/buypeeb.py index fe492ba..e82152b 100755 --- a/buypeeb.py +++ b/buypeeb.py @@ -270,6 +270,7 @@ class BuypeebApp: prompt.format_secondary_text("Are you sure you want to quit buypeeb?") response = prompt.run() + prompt.destroy() if response == Gtk.ResponseType.OK: self.shutdown(self)