Fix: Maximize-Button im XSL-Abhängigkeitsdialog unter Windows ermöglichen (v1.2.8)

WindowMinMaxButtonsHint gesetzt, damit der Dialog auch unter Windows maximiert werden kann.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-03 13:24:05 +02:00
parent 7406c65bf9
commit 0560dbafe4
6 changed files with 7 additions and 6 deletions
+1
View File
@@ -138,6 +138,7 @@ class XslDependencyDialog(QDialog):
project_xsl_paths: Absolute Pfade aller im Projekt referenzierten XSL-Dateien (None = kein Projekt)
"""
super().__init__(parent)
self.setWindowFlags(self.windowFlags() | Qt.WindowMinMaxButtonsHint)
self.xsl_root_dir = xsl_root_dir
self.dependency_graph = dependency_graph
self._project_xsl_paths: set[Path] = project_xsl_paths if project_xsl_paths is not None else set()