From f2c63aa3b4bc42186f70c3e08439a2694d18bd8c Mon Sep 17 00:00:00 2001 From: lennard <44114474+Dummerle@users.noreply.github.com> Date: Thu, 8 Feb 2024 13:10:00 +0100 Subject: [PATCH] Set desktop file name to fix default icon on wayland --- rare/widgets/rare_app.py | 1 + 1 file changed, 1 insertion(+) diff --git a/rare/widgets/rare_app.py b/rare/widgets/rare_app.py index 32de9dc6..238335bf 100644 --- a/rare/widgets/rare_app.py +++ b/rare/widgets/rare_app.py @@ -66,6 +66,7 @@ class RareApp(QApplication): self.setQuitOnLastWindowClosed(False) self.setAttribute(Qt.AA_DontUseNativeDialogs, True) + self.setDesktopFileName("rare") self.setApplicationName("Rare") self.setOrganizationName("Rare")