From 8d6cbdf6739c55f7052b0d9fe67cb4f0887de3c0 Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Wed, 1 Apr 2020 17:57:33 +0200 Subject: [PATCH] Fix long materials title causes misalign. CURA-7240 --- .../Toolbox/resources/qml/components/ToolboxInstalledTile.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/Toolbox/resources/qml/components/ToolboxInstalledTile.qml b/plugins/Toolbox/resources/qml/components/ToolboxInstalledTile.qml index 8347412e27..a73e745ddb 100644 --- a/plugins/Toolbox/resources/qml/components/ToolboxInstalledTile.qml +++ b/plugins/Toolbox/resources/qml/components/ToolboxInstalledTile.qml @@ -49,6 +49,8 @@ Item { text: model.name width: parent.width + maximumLineCount: 1 + elide: Text.ElideRight wrapMode: Text.WordWrap font: UM.Theme.getFont("large_bold") color: pluginInfo.color