CURA-5204 Update the checkbox if the setting has changed in the 'More

information' dialog.
This commit is contained in:
Diego Prado Gesto 2018-04-20 14:12:05 +02:00
parent 122b5e36cf
commit 576881bfeb

View file

@ -723,6 +723,14 @@ UM.PreferencesPage
onCheckedChanged: UM.Preferences.setValue("cura/not_arrange_objects_on_load", checked)
}
}
Connections {
target: UM.Preferences
onPreferenceChanged:
{
sendDataCheckbox.checked = boolCheck(UM.Preferences.getValue("info/send_slice_info"))
}
}
}
}
}