From b09c6a4f12bb4d0e4ae935bcd8d8c7c9fa5341c2 Mon Sep 17 00:00:00 2001 From: Lipu Fei Date: Mon, 6 May 2019 13:56:18 +0200 Subject: [PATCH] Elide long website URLs CURA-6504 --- plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml b/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml index 42ece4043d..08ac1f83a5 100644 --- a/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml +++ b/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml @@ -109,6 +109,8 @@ Item top: description.bottom left: properties.right leftMargin: UM.Theme.getSize("default_margin").width + right: parent.right + rightMargin: UM.Theme.getSize("default_margin").width topMargin: UM.Theme.getSize("default_margin").height } spacing: Math.floor(UM.Theme.getSize("narrow_margin").height) @@ -123,6 +125,8 @@ Item } return "" } + width: parent.width + elide: Text.ElideRight font: UM.Theme.getFont("default") color: UM.Theme.getColor("text") linkColor: UM.Theme.getColor("text_link")