qt: re-add processEvents() calls for abstract wizard.
might work around #8809/#8815
This commit is contained in:
@@ -113,12 +113,12 @@ class QEAbstractWizard(QDialog, MessageBoxMixin):
|
|||||||
QTimer.singleShot(40, self.strt)
|
QTimer.singleShot(40, self.strt)
|
||||||
|
|
||||||
# TODO: re-test if needed on macOS
|
# TODO: re-test if needed on macOS
|
||||||
# self.refresh_gui() # Need for QT on MacOSX. Lame.
|
self.refresh_gui() # Need for QT on MacOSX. Lame.
|
||||||
|
|
||||||
# def refresh_gui(self):
|
def refresh_gui(self):
|
||||||
# # For some reason, to refresh the GUI this needs to be called twice
|
# For some reason, to refresh the GUI this needs to be called twice
|
||||||
# self.app.processEvents()
|
self.app.processEvents()
|
||||||
# self.app.processEvents()
|
self.app.processEvents()
|
||||||
|
|
||||||
def sizeHint(self) -> QSize:
|
def sizeHint(self) -> QSize:
|
||||||
return QSize(600, 400)
|
return QSize(600, 400)
|
||||||
|
|||||||
Reference in New Issue
Block a user