mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-24 23:23:57 -06:00
Fix warning about property id of null in Cura.qml
CURA-1585
This commit is contained in:
parent
540cc55b65
commit
9ac5b0ecf7
1 changed files with 1 additions and 1 deletions
|
@ -294,7 +294,7 @@ UM.MainWindow
|
|||
id: item
|
||||
text: model_data ? model_data.name : ""
|
||||
checkable: true
|
||||
checked: Cura.MachineManager.activeQualityId == model_data.id
|
||||
checked: model_data != null ? Cura.MachineManager.activeQualityId == model_data.id : false
|
||||
exclusiveGroup: profileMenuGroup
|
||||
onTriggered: Cura.MachineManager.setActiveQuality(model_data.id)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue