Skip to content

Commit 1062ed6

Browse files
committed
fix window layout to fit content in Cura 5.1
1 parent c103f19 commit 1062ed6

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# Changelog of Cura-DuetRRFPlugin
22

3-
## v1.2.8: 2022-XX-XX
3+
## v1.2.8: 2022-08-15
44
* also embed QOI thumbnail images when using "Save to Disk" option
5+
* fix window layout to fit content in Cura 5.1
56

67
## v1.2.7: 2022-04-26
78
* bump compatibility for Cura 5.0 / API 8.0, while retaining compatibility with Cura 4.11 / 7.7 and up

plugin.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"name": "DuetRRF",
33
"author": "Thomas Kriechbaumer",
44
"description": "Upload and Print to Duet 2 Wifi / Duet 2 Ethernet / Duet 2 Maestro / Duet 3 with RepRapFirmware.",
5-
"version": "1.2.7",
6-
"supported_sdk_versions": ["7.7.0", "7.8.0", "7.9.0", "8.0.0"]
5+
"version": "1.2.8",
6+
"supported_sdk_versions": ["7.7.0", "7.8.0", "7.9.0", "8.0.0", "8.1.0"]
77
}

resources/qml/DuetRRFAction.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Cura.MachineAction
2424

2525
Component.onCompleted: {
2626
actionDialog.minimumWidth = screenScaleFactor * 500;
27-
actionDialog.minimumHeight = screenScaleFactor * 300;
27+
actionDialog.minimumHeight = screenScaleFactor * 325;
2828
}
2929

3030
Column {

0 commit comments

Comments
 (0)