mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-02 20:52:20 -07:00
Fix errors starting Cura with no machine selected
Contributes to CURA-855
This commit is contained in:
parent
eb8a1bea8d
commit
4e803a0815
1 changed files with 2 additions and 2 deletions
|
|
@ -74,9 +74,9 @@ Item{
|
||||||
MenuItem
|
MenuItem
|
||||||
{
|
{
|
||||||
id: item
|
id: item
|
||||||
text: model_data.name
|
text: model_data ? model_data.name : ""
|
||||||
checkable: true;
|
checkable: true;
|
||||||
checked: model_data.active;
|
checked: model_data ? model_data.active : false;
|
||||||
exclusiveGroup: profileSelectionMenuGroup;
|
exclusiveGroup: profileSelectionMenuGroup;
|
||||||
onTriggered:
|
onTriggered:
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue