From 0e45ec1197acb1c0c79ed8a5174a3e3b92482f09 Mon Sep 17 00:00:00 2001 From: Lipu Fei Date: Tue, 10 Oct 2017 14:26:25 +0200 Subject: [PATCH] Fix auto-adjust for "Print Setup" text CURA-4341 --- resources/qml/Sidebar.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/qml/Sidebar.qml b/resources/qml/Sidebar.qml index b1c5008d38..3087552819 100755 --- a/resources/qml/Sidebar.qml +++ b/resources/qml/Sidebar.qml @@ -136,7 +136,7 @@ Rectangle anchors.rightMargin: UM.Theme.getSize("sidebar_margin").width anchors.top: { - if (settingsModeLabel.contentWidth >= parent.width - width - UM.Theme.getSize("sidebar_margin").width) + if (settingsModeLabel.contentWidth >= parent.width - width - UM.Theme.getSize("sidebar_margin").width * 2) { return settingsModeLabel.bottom; }