Browse Source

Fix displaying generic materials

I had that commented out for debugging.
Ghostkeeper 5 years ago
parent
commit
362c7d09fb
1 changed files with 2 additions and 2 deletions
  1. 2 2
      plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml

+ 2 - 2
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
-        }*/
+        }
     }
 }