diff --git a/qml/components/IntegerSetting.qml b/qml/components/IntegerSetting.qml index 9941274..52b12f4 100644 --- a/qml/components/IntegerSetting.qml +++ b/qml/components/IntegerSetting.qml @@ -7,7 +7,7 @@ Setting { property bool suppressChange: false - displayValue: choice ? choice : default_choice + displayValue: choice != undefined ? choice : default_choice onChoiceChanged: { if(choice == undefined)