From 07569c6b88e1e85e0ae77731b1756002a27076ad Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Wed, 1 Apr 2020 17:54:56 +0200 Subject: [PATCH] Fix extra line after plugin/materials list. CURA-7240 --- .../Toolbox/resources/qml/components/ToolboxInstalledTile.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/Toolbox/resources/qml/components/ToolboxInstalledTile.qml b/plugins/Toolbox/resources/qml/components/ToolboxInstalledTile.qml index f85a1056b7..8347412e27 100644 --- a/plugins/Toolbox/resources/qml/components/ToolboxInstalledTile.qml +++ b/plugins/Toolbox/resources/qml/components/ToolboxInstalledTile.qml @@ -17,7 +17,8 @@ Item color: UM.Theme.getColor("lining") width: parent.width height: Math.floor(UM.Theme.getSize("default_lining").height) - anchors.bottom: parent.bottom + anchors.bottom: parent.top + visible: index != 0 } Row {