From b17685d07519ef858900e358b3026bebed2acdf1 Mon Sep 17 00:00:00 2001 From: Jack Ha Date: Wed, 9 May 2018 13:59:45 +0200 Subject: [PATCH] CURA-5296 fix model property mismatch --- plugins/Toolbox/resources/qml/ToolboxInstalledTile.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Toolbox/resources/qml/ToolboxInstalledTile.qml b/plugins/Toolbox/resources/qml/ToolboxInstalledTile.qml index ad6d610e44..dd089debca 100644 --- a/plugins/Toolbox/resources/qml/ToolboxInstalledTile.qml +++ b/plugins/Toolbox/resources/qml/ToolboxInstalledTile.qml @@ -26,7 +26,7 @@ Item Column { id: pluginInfo - property var color: model.package_type === "plugin" && !isEnabled ? UM.Theme.getColor("lining") : UM.Theme.getColor("text") + property var color: model.type === "plugin" && !isEnabled ? UM.Theme.getColor("lining") : UM.Theme.getColor("text") height: parent.height anchors {