Ensure that the installed & canUpdate properties get set correctly

CURA-6053
This commit is contained in:
Jaime van Kessel 2019-01-11 14:43:20 +01:00
parent d4621ec504
commit 2dead87593

View File

@ -91,5 +91,10 @@ Column
target: toolbox
onInstallChanged: installed = toolbox.isInstalled(model.id)
onMetadataChanged: canUpdate = toolbox.canUpdate(model.id)
onFilterChanged:
{
installed = toolbox.isInstalled(model.id)
canUpdate = toolbox.canUpdate(model.id)
}
}
}