Move logo to app/assets and update loader

This commit is contained in:
lm 2025-10-17 14:13:38 +02:00
parent 9093e7c835
commit 97bfe772ff
2 changed files with 1 additions and 1 deletions

BIN
app/assets/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 222 KiB

View File

@ -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))