From a90acb595cda6b7a89f717848659f28b5f965ec8 Mon Sep 17 00:00:00 2001 From: Vitali Graf Date: Sun, 1 Jun 2025 16:36:47 +0200 Subject: [PATCH] qdarktheme erstmal wieder deaktiviert --- src/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.py b/src/main.py index 1034d72..765bfb3 100644 --- a/src/main.py +++ b/src/main.py @@ -4,7 +4,7 @@ from PySide6.QtWidgets import QApplication from MainWindow import MainWindow -import qdarktheme +#import qdarktheme def main(): @@ -13,7 +13,7 @@ def main(): app = QApplication(sys.argv) # Dark Theme aktivieren - qdarktheme.setup_theme("auto") + # qdarktheme.setup_theme("auto") # Hauptfenster erstellen window = MainWindow()