From 461cb7ae8c8940dd0678c7d38cbf12311b9e5866 Mon Sep 17 00:00:00 2001 From: donoban Date: Wed, 24 Oct 2018 09:45:29 +0200 Subject: [PATCH] Don't close main about dialog when close some child dialog --- qubesmanager/about.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/qubesmanager/about.py b/qubesmanager/about.py index b12ae36..9ac818f 100644 --- a/qubesmanager/about.py +++ b/qubesmanager/about.py @@ -47,9 +47,7 @@ class AboutDialog(ui_about.Ui_AboutDialog, QDialog): def on_release_notes_clicked(self): release_notes_dialog = ReleaseNotesDialog() release_notes_dialog.exec_() - self.accept() def on_information_notes_clicked(self): information_notes_dialog = InformationNotesDialog() information_notes_dialog.exec_() - self.accept()