From bdad958e25190cf3d464a09ade13ada4e7903804 Mon Sep 17 00:00:00 2001 From: Vxrtrauter Date: Tue, 9 Sep 2025 13:42:36 +0200 Subject: [PATCH] fix: correct dark mode detection function call --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index aaebd99..b22937a 100644 --- a/main.py +++ b/main.py @@ -11,7 +11,7 @@ debug = True def run_gui(): state_debug(debug) app = QtWidgets.QApplication([]) - if darkdetect.isDark(): + if darkdetect.isDark: app.setStyleSheet(qdarktheme.load_stylesheet("dark")) else: app.setStyleSheet(qdarktheme.load_stylesheet("light"))