Fixed bug in VM Settings

Wrong variable name caused a crash on start
This commit is contained in:
Marta Marczykowska-Górecka 2019-11-28 15:44:54 +01:00
parent ca5e48913a
commit 2a73bfbb4c
No known key found for this signature in database
GPG Key ID: 9A752C30B26FD04B

View File

@ -223,8 +223,8 @@ class VMSettingsWindow(ui_settingsdlg.Ui_SettingsDialog, QtWidgets.QDialog):
self.refresh_apps_button_pressed) self.refresh_apps_button_pressed)
def setup_application(self): def setup_application(self):
self.qt_app.setApplicationName(self.tr("Qube Settings")) self.qapp.setApplicationName(self.tr("Qube Settings"))
self.qt_app.setWindowIcon(QtGui.QIcon.fromTheme("qubes-manager")) self.qapp.setWindowIcon(QtGui.QIcon.fromTheme("qubes-manager"))
def clear_threads(self): def clear_threads(self):
for thread in self.threads_list: for thread in self.threads_list: