Skip to content

Commit

Permalink
fix window layout to fit content in Cura 5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Kriechi committed Aug 15, 2022
1 parent c103f19 commit 1062ed6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
}
2 changes: 1 addition & 1 deletion resources/qml/DuetRRFAction.qml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Cura.MachineAction

Component.onCompleted: {
actionDialog.minimumWidth = screenScaleFactor * 500;
actionDialog.minimumHeight = screenScaleFactor * 300;
actionDialog.minimumHeight = screenScaleFactor * 325;
}

Column {
Expand Down

0 comments on commit 1062ed6

Please sign in to comment.