Fix arguments passed via idle_add

This commit is contained in:
kramo
2024-01-24 15:46:20 +01:00
parent 7c9d9a317b
commit f741b9f100

View File

@@ -214,7 +214,7 @@ class Importer(ErrorProducer):
pipeline.connect(
"advanced",
# I'm not sure idle_add is needed here, but a widget is updated in the callback
lambda *args: GLib.idle_add(self.pipeline_advanced_callback, args),
lambda *args: GLib.idle_add(self.pipeline_advanced_callback, *args),
)
self.game_pipelines.add(pipeline)