From 68bdff53cf540dd2bc5c42088a392c63a08a767f Mon Sep 17 00:00:00 2001 From: Keith Edmunds Date: Sun, 23 Feb 2025 09:20:30 +0000 Subject: [PATCH] Move menu.yaml into app/ --- menu.yaml => app/menu.yaml | 0 app/musicmuster.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename menu.yaml => app/menu.yaml (100%) diff --git a/menu.yaml b/app/menu.yaml similarity index 100% rename from menu.yaml rename to app/menu.yaml diff --git a/app/musicmuster.py b/app/musicmuster.py index cdd541c..c6d12b1 100755 --- a/app/musicmuster.py +++ b/app/musicmuster.py @@ -619,7 +619,7 @@ class Window(QMainWindow): menu_bar = self.menuBar() # Load menu structure from YAML file - with open("menu.yaml", "r") as file: + with open("app/menu.yaml", "r") as file: menu_data = yaml.safe_load(file) self.menu_actions = {} # Store reference for enabling/disabling actions