From ffe30a313eaf75eba42450a0eb89ee6e4fa7a57f Mon Sep 17 00:00:00 2001 From: Marco Bubke Date: Thu, 25 Apr 2024 14:55:19 +0200 Subject: [PATCH] QmlDesigner: Fix basic label specifics Change-Id: Ifb1fbdde28ab870b1eb9d2fbaa85d75fe8ca2e1a Reviewed-by: Qt CI Patch Build Bot Reviewed-by: Tim Jenssen --- .../QtQuick/Controls/Basic/LabelSpecifics.qml | 27 +++---------------- 1 file changed, 3 insertions(+), 24 deletions(-) diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/Basic/LabelSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/Basic/LabelSpecifics.qml index b3cb5a46ab7..6c826e46ead 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/Basic/LabelSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/Basic/LabelSpecifics.qml @@ -1,27 +1,6 @@ -// Copyright (C) 2022 The Qt Company Ltd. +// Copyright (C) 2024 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 -import QtQuick 2.15 -import HelperWidgets 2.0 -import QtQuick.Layouts 1.15 -import StudioTheme 1.0 as StudioTheme +import ".." as Original -Column { - width: parent.width - - CharacterSection { - showVerticalAlignment: true - } - - TextExtrasSection { - width: parent.width - showWrapMode: true - showFormatProperty: true - } - - FontExtrasSection {} - - PaddingSection {} - - InsetSection {} -} +Original.LabelSpecifics {}