mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 15:07:28 -06:00
Per object settings filter now uses correct bool types (instead of strings)
CURA-1278
This commit is contained in:
parent
fd3788ba7c
commit
5f54d611cf
1 changed files with 3 additions and 3 deletions
|
@ -153,11 +153,11 @@ Item {
|
||||||
{
|
{
|
||||||
if(text != "")
|
if(text != "")
|
||||||
{
|
{
|
||||||
listview.model.filter.label = {"global_only":"False", "label": text}
|
listview.model.filter.label = {"global_only": false, "label": text}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
listview.model.filter = {"global_only":"False"}
|
listview.model.filter = {"global_only": false}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -182,7 +182,7 @@ Item {
|
||||||
containerId: Cura.MachineManager.activeDefinitionId
|
containerId: Cura.MachineManager.activeDefinitionId
|
||||||
filter:
|
filter:
|
||||||
{
|
{
|
||||||
"global_only": "False"
|
"global_only": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
delegate:Loader
|
delegate:Loader
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue