mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-08 14:34:01 -06:00
Added missing checks
This commit is contained in:
parent
995c077627
commit
f1efcea088
1 changed files with 2 additions and 2 deletions
|
@ -19,8 +19,8 @@ UM.PreferencesPage
|
|||
{
|
||||
UM.Preferences.resetPreference("view/show_overhang");
|
||||
UM.Preferences.resetPreference("view/center_on_select");
|
||||
overhangCheckbox.checked = UM.Preferences.getValue("view/show_overhang") == "True"
|
||||
centerCheckbox.checked = UM.Preferences.getValue("view/center_on_select") == "True"
|
||||
overhangCheckbox.checked = boolCheck(UM.Preferences.getValue("view/show_overhang"))
|
||||
centerCheckbox.checked = boolCheck(UM.Preferences.getValue("view/center_on_select"))
|
||||
}
|
||||
|
||||
GridLayout
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue