From 26c3fe0428b598cd321f7e84ce19e73811f93f51 Mon Sep 17 00:00:00 2001 From: Pranta Dastider Date: Wed, 8 Feb 2023 18:19:29 +0100 Subject: [PATCH] QmlDesigner: Update Tooltips for DelayButton Section MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This patch update tooltip text for DelayButton section field in Property editor. Fixes: QDS-9071 Change-Id: Iade7261f3552b77542807939804a98f2becbdb07 Reviewed-by: Reviewed-by: Henning Gründl Reviewed-by: Mats Honkamaa Reviewed-by: Thomas Hartmann --- .../QtQuick/Controls/DelayButtonSpecifics.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/DelayButtonSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/DelayButtonSpecifics.qml index 590b029b47e..f59ba356916 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/DelayButtonSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/DelayButtonSpecifics.qml @@ -17,7 +17,7 @@ Column { SectionLayout { PropertyLabel { text: qsTr("Delay") - tooltip: qsTr("The delay in milliseconds.") + tooltip: qsTr("Sets the delay before the button activates.") } SecondColumnLayout { @@ -36,6 +36,7 @@ Column { ControlLabel { text: "ms" + tooltip: qsTr("Milliseconds.") elide: Text.ElideNone }