Dunkle Thema installiert

This commit is contained in:
2025-05-30 17:19:22 +02:00
parent fc0cc76b00
commit 36372992c4
3 changed files with 29 additions and 0 deletions
+5
View File
@@ -4,11 +4,16 @@ from PySide6.QtWidgets import QApplication
from MainWindow import MainWindow
import qdarktheme
def main():
"""Haupteinstiegspunkt der Anwendung."""
# QApplication-Instanz erstellen
app = QApplication(sys.argv)
# Dark Theme aktivieren
qdarktheme.setup_theme("auto")
# Hauptfenster erstellen
window = MainWindow()