Code cleanup

This commit is contained in:
Joseff 2023-03-08 17:27:25 +01:00 committed by Ondřej Samohel
parent e5b7349dff
commit 7941c73f82

View file

@ -82,7 +82,9 @@ class UnrealPrelaunchHook(PreLaunchHook):
) )
# set up the splash screen with necessary triggers # set up the splash screen with necessary triggers
ue_plugin_worker.installing.connect(splash_screen.update_top_label_text) ue_plugin_worker.installing.connect(
splash_screen.update_top_label_text
)
ue_plugin_worker.progress.connect(splash_screen.update_progress) ue_plugin_worker.progress.connect(splash_screen.update_progress)
ue_plugin_worker.log.connect(splash_screen.append_log) ue_plugin_worker.log.connect(splash_screen.append_log)
ue_plugin_worker.finished.connect(splash_screen.quit_and_close) ue_plugin_worker.finished.connect(splash_screen.quit_and_close)