From 79613f9b1e1a04996b581ed11bb3d28f8dceda44 Mon Sep 17 00:00:00 2001 From: glubsy Date: Thu, 30 Jul 2020 03:22:13 +0200 Subject: [PATCH] Fix crash quitting while details dialog active * While the details dialog is opened, if quit is triggered, the error message "'DetailsPanel' object has no attribute '_table'" is reported * A workaround is to cleanly close the dialog before tear down --- qt/app.py | 1 + 1 file changed, 1 insertion(+) diff --git a/qt/app.py b/qt/app.py index 7401fe82..97cbce8f 100644 --- a/qt/app.py +++ b/qt/app.py @@ -248,6 +248,7 @@ class DupeGuru(QObject): preferences_dialog.setParent(None) def quitTriggered(self): + self.details_dialog.close() self.directories_dialog.close() def showAboutBoxTriggered(self):