mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-08 06:23:59 -06:00
CURA-5296 Small QML bug fix
This commit is contained in:
parent
d4c5be0455
commit
7861840886
2 changed files with 6 additions and 3 deletions
|
@ -77,8 +77,11 @@ Column
|
|||
Connections
|
||||
{
|
||||
target: toolbox
|
||||
onMetadataChanged: canUpdate = toolbox.canUpdate(model.id)
|
||||
onMetadataChanged: canDowngrade = toolbox.canDowngrade(model.id)
|
||||
onMetadataChanged:
|
||||
{
|
||||
canUpdate = toolbox.canUpdate(model.id)
|
||||
canDowngrade = toolbox.canDowngrade(model.id)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -974,7 +974,7 @@
|
|||
"package_type": "material",
|
||||
"display_name": "Ultimaker ABS",
|
||||
"description": "Example package for material and quality profiles for Ultimaker materials.",
|
||||
"package_version": "0.5.0",
|
||||
"package_version": "1.0.0",
|
||||
"cura_version": 4,
|
||||
"website": "https://ultimaker.com/products/materials/abs",
|
||||
"author": {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue