Warning, /plasma/qqc2-breeze-style/style/qtquickcontrols/Control.qml is written in an unsupported language. File is not indexed.
0001 /* SPDX-FileCopyrightText: 2020 Noah Davis <noahadvs@gmail.com>
0002 * SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0003 */
0004
0005 import QtQuick
0006 import QtQuick.Templates as T
0007
0008 T.Control {
0009 id: control
0010
0011 implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
0012 implicitContentWidth + leftPadding + rightPadding)
0013 implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
0014 implicitContentHeight + topPadding + bottomPadding)
0015 }