From c85d6e4e8b2f8e372d2244b9028ccab007f4cfce Mon Sep 17 00:00:00 2001 From: donoban Date: Sun, 31 Mar 2019 20:01:38 +0200 Subject: [PATCH] Removed unneded calls to Override/Restore cursor --- qubesmanager/settings.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/qubesmanager/settings.py b/qubesmanager/settings.py index ff23841..3b65762 100644 --- a/qubesmanager/settings.py +++ b/qubesmanager/settings.py @@ -134,8 +134,6 @@ class VMSettingsWindow(ui_settingsdlg.Ui_SettingsDialog, QtGui.QDialog): def __init__(self, vm, qapp, init_page="basic", parent=None): super(VMSettingsWindow, self).__init__(parent) - QtGui.QApplication.setOverrideCursor(QtCore.Qt.BusyCursor) - self.vm = vm self.qapp = qapp self.threads_list = [] @@ -233,8 +231,6 @@ class VMSettingsWindow(ui_settingsdlg.Ui_SettingsDialog, QtGui.QDialog): self.refresh_apps_button.clicked.connect( self.refresh_apps_button_pressed) - QtGui.QApplication.restoreOverrideCursor() - def clear_threads(self): for thread in self.threads_list: if thread.isFinished():