Fix display of integer 0 in ChoiceSetting
This commit is contained in:
parent
47a032a84d
commit
68b7afff5e
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ Setting {
|
|||
|
||||
property int num_large_choices: 8
|
||||
|
||||
displayValue: Utils.ippName(name, choice ? choice : default_choice)
|
||||
displayValue: Utils.ippName(name, choice != undefined ? choice : default_choice)
|
||||
|
||||
onClicked: {
|
||||
if(limited_choices.length>num_large_choices)
|
||||
|
|
Loading…
Reference in a new issue