Move all the seperate tiles into loaders instead of the entire page

Otherwise the details selection didn't work anymore and I didn't want to add more hacks.

CURA-6006
This commit is contained in:
Jaime van Kessel 2018-12-06 14:35:07 +01:00
parent 54def4edee
commit a77ad32999
4 changed files with 33 additions and 15 deletions

View file

@ -30,23 +30,26 @@ Rectangle
height: childrenRect.height
spacing: UM.Theme.getSize("wide_margin").width
columns: 3
anchors
{
horizontalCenter: parent.horizontalCenter
}
anchors.horizontalCenter: parent.horizontalCenter
Repeater
{
model: {
if ( toolbox.viewCategory == "plugin" )
model:
{
if (toolbox.viewCategory == "plugin")
{
return toolbox.pluginsShowcaseModel
}
if ( toolbox.viewCategory == "material" )
if (toolbox.viewCategory == "material")
{
return toolbox.materialsShowcaseModel
}
}
delegate: ToolboxDownloadsShowcaseTile {}
delegate: Loader
{
asynchronous: true
source: "ToolboxDownloadsShowcaseTile.qml"
}
}
}
}