From 1062ed676d6b1709914000ad8c7ce2fdbf952c8e Mon Sep 17 00:00:00 2001 From: Thomas Kriechbaumer Date: Fri, 5 Aug 2022 17:19:00 +0200 Subject: [PATCH] fix window layout to fit content in Cura 5.1 --- CHANGELOG.md | 3 ++- plugin.json | 4 ++-- resources/qml/DuetRRFAction.qml | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 835d438..aab680b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,8 @@ # Changelog of Cura-DuetRRFPlugin -## v1.2.8: 2022-XX-XX +## v1.2.8: 2022-08-15 * also embed QOI thumbnail images when using "Save to Disk" option +* fix window layout to fit content in Cura 5.1 ## v1.2.7: 2022-04-26 * bump compatibility for Cura 5.0 / API 8.0, while retaining compatibility with Cura 4.11 / 7.7 and up diff --git a/plugin.json b/plugin.json index 8f32ab2..52a4967 100644 --- a/plugin.json +++ b/plugin.json @@ -2,6 +2,6 @@ "name": "DuetRRF", "author": "Thomas Kriechbaumer", "description": "Upload and Print to Duet 2 Wifi / Duet 2 Ethernet / Duet 2 Maestro / Duet 3 with RepRapFirmware.", - "version": "1.2.7", - "supported_sdk_versions": ["7.7.0", "7.8.0", "7.9.0", "8.0.0"] + "version": "1.2.8", + "supported_sdk_versions": ["7.7.0", "7.8.0", "7.9.0", "8.0.0", "8.1.0"] } diff --git a/resources/qml/DuetRRFAction.qml b/resources/qml/DuetRRFAction.qml index e04c42f..4fb9ace 100644 --- a/resources/qml/DuetRRFAction.qml +++ b/resources/qml/DuetRRFAction.qml @@ -24,7 +24,7 @@ Cura.MachineAction Component.onCompleted: { actionDialog.minimumWidth = screenScaleFactor * 500; - actionDialog.minimumHeight = screenScaleFactor * 300; + actionDialog.minimumHeight = screenScaleFactor * 325; } Column {