Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[QgsQuick] Checkbox widget fix
Correct switching on/off
  • Loading branch information
vsklencar authored and wonder-sk committed Apr 25, 2019
1 parent 5b7e67a commit 80a40dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/quickgui/plugin/editor/qgsquickcheckbox.qml
Expand Up @@ -56,7 +56,7 @@ Item {

MouseArea {
anchors.fill: parent
onClicked: checkBox.currentValue = !checkBox.currentValue
onClicked: checkBox.checked = !checkBox.checked
}
}
onCheckedChanged: {
Expand Down

0 comments on commit 80a40dd

Please sign in to comment.