From 611e0fc8d19e2f3463cf55bba7e7bf6b9926454c Mon Sep 17 00:00:00 2001 From: Pranta Dastider Date: Tue, 31 Jan 2023 16:37:57 +0100 Subject: [PATCH] QmlDesigner: Update Tooltips for Button Section This patch update tooltip text for Button fields in Property editor. Fixes: QDS-8927 Change-Id: I11920a2f9680cf0901b9111623f2af3c52eb0b26 Reviewed-by: Reviewed-by: Mats Honkamaa Reviewed-by: Thomas Hartmann --- .../propertyEditorQmlSources/QtQuick/Controls/ButtonSection.qml | 2 +- .../QtQuick/Controls/RoundButtonSpecifics.qml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ButtonSection.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ButtonSection.qml index 054c9cb6986..5831bbeadf6 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ButtonSection.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ButtonSection.qml @@ -17,7 +17,7 @@ Section { SectionLayout { PropertyLabel { text: qsTr("Appearance") - tooltip: qsTr("Whether the button is flat and/or highlighted.") + tooltip: qsTr("Toggles if the button is flat or highlighted.") blockedByTemplate: !backendValues.flat.isAvailable && !backendValues.highlighted.isAvailable } diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RoundButtonSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RoundButtonSpecifics.qml index ff05c6fd472..0422c6eb1ac 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RoundButtonSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RoundButtonSpecifics.qml @@ -16,7 +16,7 @@ Column { SectionLayout { PropertyLabel { text: qsTr("Appearance") - tooltip: qsTr("Whether the button is flat and/or highlighted.") + tooltip: qsTr("Toggles if the button is flat or highlighted.") blockedByTemplate: !backendValues.flat.isAvailable && !backendValues.highlighted.isAvailable }