Commit f19ff053 authored by Don Gagne's avatar Don Gagne

NaN was reversed

parent 97cd1474
......@@ -119,8 +119,8 @@ Rectangle {
text: object.name
Layout.column: 0
Layout.row: index
checked: isNaN(object.rawValue)
onClicked: object.rawValue = checked ? NaN : 0
checked: !isNaN(object.rawValue)
onClicked: object.rawValue = checked ? 0 : NaN
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment