diff --git a/plugins/PluginBrowser/PluginBrowser.qml b/plugins/PluginBrowser/PluginBrowser.qml index 494e09e26b..f8a4001443 100644 --- a/plugins/PluginBrowser/PluginBrowser.qml +++ b/plugins/PluginBrowser/PluginBrowser.qml @@ -9,10 +9,10 @@ UM.Dialog id: base title: catalog.i18nc("@title:window", "Find & Update plugins") - width: 600 - height: 450 - minimumWidth: 350 - minimumHeight: 350 + width: 600 * Screen.devicePixelRatio + height: 450 * Screen.devicePixelRatio + minimumWidth: 350 * Screen.devicePixelRatio + minimumHeight: 350 * Screen.devicePixelRatio Item { anchors.fill: parent diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 4220fec011..5a7cca5a31 100755 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -3015,7 +3015,7 @@ "unit": "mm", "type": "float", "default_value": 0.0, - "minimum_value": "0", + "minimum_value": "machine_width / -2 if machine_center_is_zero else 0", "settable_per_mesh": false, "settable_per_extruder": true, "settable_per_meshgroup": true @@ -3027,7 +3027,7 @@ "unit": "mm", "type": "float", "default_value": 0.0, - "minimum_value": "0", + "minimum_value": "machine_depth / -2 if machine_center_is_zero else 0", "settable_per_mesh": false, "settable_per_extruder": true, "settable_per_meshgroup": true diff --git a/resources/themes/cura-light/theme.json b/resources/themes/cura-light/theme.json index eb9fb72db6..00f8bcd2b8 100644 --- a/resources/themes/cura-light/theme.json +++ b/resources/themes/cura-light/theme.json @@ -332,6 +332,7 @@ "save_button_specs_icons": [1.4, 1.4], "modal_window_minimum": [60.0, 45], + "license_window_minimum": [45, 45], "wizard_progress": [10.0, 0.0], "message": [30.0, 5.0], diff --git a/resources/themes/cura/theme.json b/resources/themes/cura/theme.json index 3ef5366c9e..3f9d98b5b4 100644 --- a/resources/themes/cura/theme.json +++ b/resources/themes/cura/theme.json @@ -278,7 +278,6 @@ "save_button_specs_icons": [1.4, 1.4], "modal_window_minimum": [60.0, 45], - "license_window_minimum": [45, 45], "wizard_progress": [10.0, 0.0], "message": [30.0, 5.0],