Revert "Increase progress wait time to 2s"

This reverts commit 0e9f8d4c45.
This commit is contained in:
donoban 2019-02-19 21:46:17 +01:00
parent 0e9f8d4c45
commit dda98610d5
No known key found for this signature in database
GPG Key ID: 141310D8E3ED08A5

View File

@ -279,7 +279,7 @@ class VMSettingsWindow(ui_settingsdlg.Ui_SettingsDialog, QtGui.QDialog):
self.progress = QtGui.QProgressDialog(
self.tr( # Last param should match last setValue()
"Saving changes..."), "", 0, 6)
self.progress.setMinimumDuration(2000)
self.progress.setMinimumDuration(1000)
self.progress.setCancelButton(None)
self.progress.setModal(True)
self.progress.show()