From c178f45d5eab06d73995f8113e101379f6282d69 Mon Sep 17 00:00:00 2001 From: Pranta Dastider Date: Wed, 22 Feb 2023 14:56:59 +0100 Subject: [PATCH] QmlDesigner: Update Tooltips for Frame Section MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This patch update tooltip text for Frame section fields in Property editor. Fixes: QDS-9207 Change-Id: Iece6c73e77ca33c93f4845e18b93c10ab73f34b1 Reviewed-by: Henning Gründl --- .../QtQuick/Controls/PaneSection.qml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PaneSection.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PaneSection.qml index 049f7692ca1..1ff8b24e9ab 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PaneSection.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PaneSection.qml @@ -14,8 +14,9 @@ Section { SectionLayout { PropertyLabel { text: qsTr("Content size") - tooltip: qsTr("Sets the size of the pane. This is used to calculate\n" - + "the total implicit size.") + tooltip: qsTr("Sets the size of the %1. This is used to calculate\n" + + "the total implicit size.").arg(caption.charAt(0).toLowerCase() + + caption.slice(1)) } SecondColumnLayout {