summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ButtonRowButton.qml10
1 files changed, 10 insertions, 0 deletions
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ButtonRowButton.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ButtonRowButton.qml
index 6e8b5fa4e1..4381b30d52 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ButtonRowButton.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ButtonRowButton.qml
@@ -99,5 +99,15 @@ Item {
ToolTipArea {
anchors.fill: parent
id: toolTipArea
+ anchors.leftMargin: leftPadding
+ onClicked: {
+ if (buttonRowButton.checked) {
+ buttonRowButton.parent.__unCheckButton(index())
+ } else {
+ buttonRowButton.parent.__checkButton(index())
+ }
+ buttonRowButton.clicked()
+ }
+
}
}