From 3b779bb9d1539b83f903c02f39ed077d88034a0f Mon Sep 17 00:00:00 2001 From: Bart Feenstra Date: Sun, 13 Nov 2022 00:29:24 +0000 Subject: [PATCH] Fix a bug where the project configuration would not be autosaved when using the GUI. (#913) --- betty/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/betty/cli.py b/betty/cli.py index 1720b7db0..1b6e094ca 100644 --- a/betty/cli.py +++ b/betty/cli.py @@ -160,7 +160,7 @@ async def _gui(configuration_file_path: Optional[str]): if configuration_file_path is None: window = WelcomeWindow(app) else: - app.project.configuration.read() + app.project.configuration.read(configuration_file_path) window = ProjectWindow(app) window.show() sys.exit(qapp.exec())