diff --git a/app/assets/logo.png b/app/assets/logo.png new file mode 100644 index 0000000..6b1674f Binary files /dev/null and b/app/assets/logo.png differ diff --git a/app/gui/ui.py b/app/gui/ui.py index f21cf85..9ce1ba4 100644 --- a/app/gui/ui.py +++ b/app/gui/ui.py @@ -356,7 +356,7 @@ class UIBuilderMixin: try: from PIL import Image, ImageTk # type: ignore - logo_path = Path(__file__).resolve().parents[1] / "logo.png" + logo_path = Path(__file__).resolve().parent / "assets" / "logo.png" if logo_path.exists(): image = Image.open(logo_path).convert("RGBA") image.thumbnail((26, 26))