diff --git a/plugins/Toolbox/resources/qml/ToolboxDownloadsGridTile.qml b/plugins/Toolbox/resources/qml/ToolboxDownloadsGridTile.qml index d7b1364a65..e0e25982db 100644 --- a/plugins/Toolbox/resources/qml/ToolboxDownloadsGridTile.qml +++ b/plugins/Toolbox/resources/qml/ToolboxDownloadsGridTile.qml @@ -56,14 +56,9 @@ Item Label { id: info - text: - { - if (model.description.length > 50) - { - return model.description.substring(0, 50) + "..." - } - return model.description - } + text: model.description + maximumLineCount: 2 + elide: Text.ElideRight width: parent.width wrapMode: Text.WordWrap color: UM.Theme.getColor("text_medium")