From 6a7977476051f4d0b5a964c8fd3f2a053ca96db1 Mon Sep 17 00:00:00 2001 From: matterhorn103 <83813148+matterhorn103@users.noreply.github.com> Date: Tue, 21 May 2024 14:22:14 +0200 Subject: [PATCH] Fix path to icon --- mora_the_explorer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mora_the_explorer.py b/mora_the_explorer.py index 82fb244..1d1f8ea 100644 --- a/mora_the_explorer.py +++ b/mora_the_explorer.py @@ -92,5 +92,5 @@ def set_dark_mode(app): window.show() - app.setWindowIcon(QIcon("explorer.ico")) + app.setWindowIcon(QIcon(str(rsrc_dir / "explorer.ico"))) app.exec()