diff --git a/resources/qml/SidebarSimple.qml b/resources/qml/SidebarSimple.qml index c1468e5e5a..265c4c1642 100644 --- a/resources/qml/SidebarSimple.qml +++ b/resources/qml/SidebarSimple.qml @@ -488,14 +488,16 @@ Item anchors.topMargin: UM.Theme.getSize("sidebar_margin").height * 2 anchors.left: parent.left width: parent.width - height: childrenRect.height + height: tipsText.contentHeight * tipsText.lineCount Text { + id: tipsText anchors.left: parent.left anchors.leftMargin: UM.Theme.getSize("sidebar_margin").width anchors.right: parent.right anchors.rightMargin: UM.Theme.getSize("sidebar_margin").width + anchors.top: parent.top wrapMode: Text.WordWrap //: Tips label text: catalog.i18nc("@label", "Need help improving your prints?
Read the Ultimaker Troubleshooting Guides").arg("https://ultimaker.com/en/troubleshooting") + "".arg(UM.Theme.getIcon("play"))