From 1aaf56a4dce802a90daa8779d1df83be2b9f144d Mon Sep 17 00:00:00 2001 From: KeksNino Date: Tue, 3 Feb 2026 17:04:09 +0100 Subject: [PATCH] fix: window transparency on linux/macos --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index d68a08d..b8bb61f 100644 --- a/main.py +++ b/main.py @@ -28,7 +28,7 @@ def run_gui(): if state.window_transparency and platform.system() != "Windows": widget.setAttribute(Qt.WidgetAttribute.WA_TranslucentBackground) - widget.setStyleSheet("MainWindow { background: transparent; }") + qdarktheme.setup_theme("auto", custom_colors={"background": "#00000000"}) from core.utils.general.logs import set_main_window set_main_window(widget)