From 2a73bfbb4c2cd92d1345e2d9155b7a76d4ceb06a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marta=20Marczykowska-G=C3=B3recka?= Date: Thu, 28 Nov 2019 15:44:54 +0100 Subject: [PATCH] Fixed bug in VM Settings Wrong variable name caused a crash on start --- qubesmanager/settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qubesmanager/settings.py b/qubesmanager/settings.py index 52e1800..73bf647 100644 --- a/qubesmanager/settings.py +++ b/qubesmanager/settings.py @@ -223,8 +223,8 @@ class VMSettingsWindow(ui_settingsdlg.Ui_SettingsDialog, QtWidgets.QDialog): self.refresh_apps_button_pressed) def setup_application(self): - self.qt_app.setApplicationName(self.tr("Qube Settings")) - self.qt_app.setWindowIcon(QtGui.QIcon.fromTheme("qubes-manager")) + self.qapp.setApplicationName(self.tr("Qube Settings")) + self.qapp.setWindowIcon(QtGui.QIcon.fromTheme("qubes-manager")) def clear_threads(self): for thread in self.threads_list: