Browse Source

Merge pull request #6394 from DonLakeFlyer/FactCheckBox

FactCheckBox: New value is not being set correctly
QGC4.4
Don Gagne 7 years ago committed by GitHub
parent
commit
39d73e52a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/FactSystem/FactControls/FactCheckBox.qml

2
src/FactSystem/FactControls/FactCheckBox.qml

@ -18,5 +18,5 @@ QGCCheckBox { @@ -18,5 +18,5 @@ QGCCheckBox {
text: qsTr("Label")
onClicked: fact.value == checked ? checkedValue : uncheckedValue
onClicked: fact.value = (checked ? checkedValue : uncheckedValue)
}

Loading…
Cancel
Save