Merge pull request #11540 from Ultimaker/CURA-8978_fix_checkbox_style_and_functionality

Fix hide / show all in setting visibility page
This commit is contained in:
Joey de l'Arago 2022-03-01 15:43:33 +01:00 committed by GitHub
commit cb2f0b9bd2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -72,7 +72,7 @@ UM.PreferencesPage
anchors.fill: parent;
onClicked:
{
if(parent.checkedState == Qt.Unchecked || parent.checkedState == Qt.PartiallyChecked)
if (parent.checkState == Qt.Unchecked || parent.checkState == Qt.PartiallyChecked)
{
definitionsModel.setAllExpandedVisible(true)
}