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:
+1
-1
@@ -4,7 +4,7 @@
|
||||
<!-- Paket-Definition (ersetzt Product in v4) -->
|
||||
<Package
|
||||
Name="DocuMentor"
|
||||
Version="1.2.7"
|
||||
Version="1.2.8"
|
||||
Manufacturer="Vitali Graf / Software- und Datenbankentwicklung"
|
||||
UpgradeCode="F498B66C-726D-44AA-95F4-CB4FBDCEF26E"
|
||||
Language="1031"
|
||||
|
||||
@@ -252,6 +252,6 @@ HINWEISE
|
||||
da sich diese ändern können.
|
||||
|
||||
================================================================================
|
||||
Stand: März 2026
|
||||
Erstellt für: DocuMentor v1.2.7
|
||||
Stand: April 2026
|
||||
Erstellt für: DocuMentor v1.2.8
|
||||
================================================================================
|
||||
|
||||
+1
-1
@@ -10,7 +10,7 @@
|
||||
; Build-Befehl: iscc installer.iss
|
||||
|
||||
#define MyAppName "DocuMentor"
|
||||
#define MyAppVersion "1.2.7"
|
||||
#define MyAppVersion "1.2.8"
|
||||
#define MyAppPublisher "Ihr Name/Organisation"
|
||||
#define MyAppURL "https://github.com/yourusername/xsl-validator"
|
||||
#define MyAppExeName "DocuMentor.exe"
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
[project]
|
||||
name = "DocuMentor"
|
||||
version = "1.2.7"
|
||||
version = "1.2.8"
|
||||
description = "Professionelle XSL-Transformations-Verwaltung und PDF-Generierung"
|
||||
readme = "README.md"
|
||||
license = {text = "MIT"}
|
||||
|
||||
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user