mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-07 14:04:03 -06:00
CURA-5204 Revert a change since it sets the setting to false if the
panel is not visible.
This commit is contained in:
parent
121d1806be
commit
122b5e36cf
1 changed files with 2 additions and 2 deletions
|
@ -652,7 +652,7 @@ UM.PreferencesPage
|
|||
{
|
||||
id: checkUpdatesCheckbox
|
||||
text: catalog.i18nc("@option:check","Check for updates on start")
|
||||
checked: parent.visible ? boolCheck(UM.Preferences.getValue("info/automatic_update_check")): false
|
||||
checked: boolCheck(UM.Preferences.getValue("info/automatic_update_check"))
|
||||
onCheckedChanged: UM.Preferences.setValue("info/automatic_update_check", checked)
|
||||
}
|
||||
}
|
||||
|
@ -667,7 +667,7 @@ UM.PreferencesPage
|
|||
{
|
||||
id: sendDataCheckbox
|
||||
text: catalog.i18nc("@option:check","Send (anonymous) print information")
|
||||
checked: parent.visible ? boolCheck(UM.Preferences.getValue("info/send_slice_info")) : false
|
||||
checked: boolCheck(UM.Preferences.getValue("info/send_slice_info"))
|
||||
onCheckedChanged: UM.Preferences.setValue("info/send_slice_info", checked)
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue