From 940a60a4cb773f642e5c333cb8f9c131f246a6cc Mon Sep 17 00:00:00 2001 From: fieldOfView Date: Wed, 22 Mar 2017 18:50:31 +0100 Subject: [PATCH] Fix font rendering on second column --- plugins/MachineSettingsAction/MachineSettingsAction.qml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/MachineSettingsAction/MachineSettingsAction.qml b/plugins/MachineSettingsAction/MachineSettingsAction.qml index 0d2165ddb4..cbc7325d5c 100644 --- a/plugins/MachineSettingsAction/MachineSettingsAction.qml +++ b/plugins/MachineSettingsAction/MachineSettingsAction.qml @@ -55,7 +55,7 @@ Cura.MachineAction Column { - width: parent.width / 2 + width: Math.floor(parent.width / 2) spacing: UM.Theme.getSize("default_margin").height Label @@ -243,7 +243,7 @@ Cura.MachineAction Column { - width: parent.width / 2 + width: Math.floor(parent.width / 2) spacing: UM.Theme.getSize("default_margin").height Label @@ -407,7 +407,7 @@ Cura.MachineAction Column { height: parent.height - width: parent.width / 2 + width: Math.floor(parent.width / 2) Label { text: catalog.i18nc("@label", "Start Gcode") @@ -431,7 +431,7 @@ Cura.MachineAction } Column { height: parent.height - width: parent.width / 2 + width: Math.floor(parent.width / 2) Label { text: catalog.i18nc("@label", "End Gcode")