1
0
mirror of https://github.com/bec-project/bec_widgets.git synced 2026-03-04 16:02:51 +01:00

fix(launch_window): processEvents removed

This commit is contained in:
2026-01-26 14:57:08 +01:00
committed by Jan Wyzula
parent f4c14d66db
commit e76dea6f69

View File

@@ -510,7 +510,6 @@ class LaunchWindow(BECMainWindow):
window = BECMainWindow(object_name=filename)
window.setCentralWidget(loaded)
QApplication.processEvents()
window.setWindowTitle(f"BEC - {filename}")
self._apply_window_geometry(window, None)
window.show()
@@ -527,7 +526,6 @@ class LaunchWindow(BECMainWindow):
window = AutoUpdates()
window.resize(window.minimumSizeHint())
QApplication.processEvents()
window.setWindowTitle(f"BEC - {window.objectName()}")
self._apply_window_geometry(window, None)
window.show()
@@ -542,7 +540,6 @@ class LaunchWindow(BECMainWindow):
widget_instance = widget(root_widget=True, object_name=name)
assert isinstance(widget_instance, QWidget)
QApplication.processEvents()
window.setCentralWidget(widget_instance)
window.resize(window.minimumSizeHint())