Skip to content

Commit 80a40dd

Browse files
vsklencarwonder-sk
vsklencar
authored andcommittedApr 25, 2019
[QgsQuick] Checkbox widget fix
Correct switching on/off
1 parent 5b7e67a commit 80a40dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/quickgui/plugin/editor/qgsquickcheckbox.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Item {
5656

5757
MouseArea {
5858
anchors.fill: parent
59-
onClicked: checkBox.currentValue = !checkBox.currentValue
59+
onClicked: checkBox.checked = !checkBox.checked
6060
}
6161
}
6262
onCheckedChanged: {

0 commit comments

Comments
 (0)
Please sign in to comment.