From 5aab4686cafec09361b8b8700b4e2fb2540efef0 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Wed, 22 Jun 2016 14:50:05 +0200 Subject: [PATCH] Layout fixes CURA-1385 --- .../UltimakerMachineActions/UMOCheckupMachineAction.qml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml b/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml index 4b280b0e8e..1c3ac84010 100644 --- a/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml +++ b/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml @@ -8,10 +8,13 @@ import QtQuick.Window 2.1 Cura.MachineAction { + anchors.fill: parent; Item { id: checkupMachineAction anchors.fill: parent; + property int leftRow: checkupMachineAction.width * 0.40 + property int rightRow: checkupMachineAction.width * 0.60 UM.I18nCatalog { id: catalog; name:"cura"} Label { @@ -72,6 +75,8 @@ Cura.MachineAction anchors.top: startStopButtons.bottom anchors.topMargin: UM.Theme.getSize("default_margin").height visible: false + width: parent.width + height: 250 ////////////////////////////////////////////////////////// Label { @@ -217,7 +222,7 @@ Cura.MachineAction anchors.top: bedTempLabel.top anchors.left: bedTempLabel.right wrapMode: Text.WordWrap - text: catalog.i18nc("@info:status","Not checked") + text: manager.bedTestCompleted ? catalog.i18nc("@info:status","Not checked"): catalog.i18nc("@info:status","Checked") } Item { @@ -236,7 +241,6 @@ Cura.MachineAction onClicked: { manager.heatupBed() - bedTempStatus.text = catalog.i18nc("@info:progress","Checking") } } }