mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-12 06:49:00 +08: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
@ -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…
x
Reference in New Issue
Block a user