mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -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 != "")
|
||||
{
|
||||
listview.model.filter.label = {"global_only":"False", "label": text}
|
||||
listview.model.filter.label = {"global_only": false, "label": text}
|
||||
}
|
||||
else
|
||||
{
|
||||
listview.model.filter = {"global_only":"False"}
|
||||
listview.model.filter = {"global_only": false}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -182,7 +182,7 @@ Item {
|
|||
containerId: Cura.MachineManager.activeDefinitionId
|
||||
filter:
|
||||
{
|
||||
"global_only": "False"
|
||||
"global_only": false
|
||||
}
|
||||
}
|
||||
delegate:Loader
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue