Skip to content

Commit f683784

Browse files
committed
Fix case sensitive paths in toolbar
1 parent 56a200c commit f683784

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

toolbar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def load_images(self) -> dict[str, tk.PhotoImage | None]:
9595
Loads PNG images from the 'icons' folder, scales them, and stores them in the images dictionary.
9696
"""
9797
icon_names = ["connection", "power", "input", "output", "delete"]
98-
icons_folder = Path(resource_path("assets/icons")).resolve()
98+
icons_folder = Path(resource_path("Assets/Icons")).resolve()
9999
images: dict[str, tk.PhotoImage | None] = {}
100100
for name in icon_names:
101101
path = os.path.join(icons_folder, f"{name}.png")

0 commit comments

Comments
 (0)