Skip to content

Commit

Permalink
Fix load config issue
Browse files Browse the repository at this point in the history
  • Loading branch information
CanYing0913 committed Feb 6, 2024
1 parent eed982c commit 0059ae6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main_GUI.py
Original file line number Diff line number Diff line change
Expand Up @@ -404,9 +404,9 @@ def handle_events(pipe_obj, window, settings):

def main():
# Initialize pipeline and GUI
pipe_obj = Pipeline()
settings = load_config()
window = init_sg(settings)
pipe_obj = Pipeline()
pipe_obj.load_setting(settings)
handle_events(pipe_obj, window, settings)

Expand Down

0 comments on commit 0059ae6

Please sign in to comment.