This commit is contained in:
Florian Bruhin 2014-02-17 22:21:11 +01:00
parent 57b2dc84fc
commit ab89a3baf0

View File

@ -231,9 +231,11 @@ class QuteBrowser(QApplication):
This only quits if both the CrashDialog was ready to quit AND the This only quits if both the CrashDialog was ready to quit AND the
shutdown is complete. shutdown is complete.
""" """
self._quit_status[sender] = True self._quit_status[sender] = True
logging.debug("maybe_quit called from {}, quit status {}".format(sender, self._quit_status)) logging.debug("maybe_quit called from {}, quit status {}".format(
sender, self._quit_status))
if all(self._quit_status.values()): if all(self._quit_status.values()):
self.quit() self.quit()