From 362c7d09fb290e00de0e03ca64ebb4ea9f27e3ff Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Fri, 16 Aug 2019 13:38:14 +0200 Subject: [PATCH] Fix displaying generic materials I had that commented out for debugging. --- plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml b/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml index bd89829604..57fb3a9279 100644 --- a/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml +++ b/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml @@ -32,13 +32,13 @@ ScrollView model: toolbox.viewCategory === "material" ? toolbox.materialsAvailableModel : toolbox.pluginsAvailableModel } - /*ToolboxDownloadsGrid + ToolboxDownloadsGrid { id: genericMaterials visible: toolbox.viewCategory === "material" width: parent.width heading: catalog.i18nc("@label", "Generic Materials") model: toolbox.materialsGenericModel - }*/ + } } }