Fix SettingCheckbox.qml warning.

This commit is contained in:
Remco Burema 2020-01-02 14:11:46 +01:00
parent 9de2b39d38
commit 261ee5b7f5
No known key found for this signature in database
GPG key ID: 215C49431D43F98C

View file

@ -48,7 +48,7 @@ SettingItem
case "False": case "False":
return false return false
default: default:
return value return (value !== undefined) ? value : false
} }
} }