Fix path to mpd/logo.svg

This commit is contained in:
Danielle McLean 2023-12-06 14:39:04 +11:00
parent 54d2a6d415
commit 9b8988cf41
Signed by: 00dani
GPG key ID: 52C059C3B22A753E

View file

@ -43,7 +43,7 @@ from .persistent_id import song_to_persistent_id
def logo_to_ns_image() -> NSImage:
return NSImage.alloc().initByReferencingFile_(
str(Path(__file__).parent / "mpd/logo.svg")
str(Path(__file__).parent.parent / "mpd/logo.svg")
)