Increase progress wait time to 2s

This commit is contained in:
donoban 2019-02-17 20:37:16 +01:00
parent bb7b8c79ae
commit 0e9f8d4c45
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(1000)
self.progress.setMinimumDuration(2000)
self.progress.setCancelButton(None)
self.progress.setModal(True)
self.progress.show()