Skip to content

Commit

Permalink
Change the order in which temporary project files are created (#143)
Browse files Browse the repository at this point in the history
  • Loading branch information
LoneGit authored Mar 21, 2024
1 parent a26ca34 commit 5e7b23a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ def excepthook(exc_type, exc_value, exc_tb):

def open_project(project_path: str):
load_settings(str(pathlib.Path(project_path, "settings.yaml")))
create_temporary_project_files()

# update project_path in settings, because it originally might be in another place
sett().project_path = project_path
create_temporary_project_files()

window = MainWindow()
window.close_signal.connect(entry_window.show)
Expand Down

0 comments on commit 5e7b23a

Please sign in to comment.