From 444204f6a15e8cdf4ffab0c658bcb8521eaa5ca1 Mon Sep 17 00:00:00 2001 From: Lipu Fei Date: Tue, 10 Oct 2017 14:35:05 +0200 Subject: [PATCH] Fix "Print Speed" text width for some translations CURA-4341 --- resources/qml/SidebarSimple.qml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/resources/qml/SidebarSimple.qml b/resources/qml/SidebarSimple.qml index ea9ee507ba..bd75a9a2de 100644 --- a/resources/qml/SidebarSimple.qml +++ b/resources/qml/SidebarSimple.qml @@ -316,10 +316,13 @@ Item anchors.top: speedSlider.bottom anchors.left: parent.left + anchors.right: speedSlider.left + anchors.rightMargin: UM.Theme.getSize("default_margin").width text: catalog.i18nc("@label", "Print Speed") font: UM.Theme.getFont("default") color: UM.Theme.getColor("text") + elide: Text.ElideRight } Label