From 4a1f1804c1c88d14437dedf289496f29d8a30689 Mon Sep 17 00:00:00 2001 From: "dries.k" Date: Sat, 18 May 2024 00:07:59 +0200 Subject: [PATCH] don't set palette --- gotify_tray/gui/themes/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/gotify_tray/gui/themes/__init__.py b/gotify_tray/gui/themes/__init__.py index 360ee3f..f8bc09a 100644 --- a/gotify_tray/gui/themes/__init__.py +++ b/gotify_tray/gui/themes/__init__.py @@ -18,7 +18,6 @@ def set_theme(app: QtWidgets.QApplication): with open(get_abs_path(f"gotify_tray/gui/themes/{theme}/style.qss"), "r") as f: stylesheet += f.read() - app.setPalette(app.style().standardPalette()) app.setStyleSheet(stylesheet)