Warning, /plasma/latte-dock/declarativeimports/components/SubHeader.qml is written in an unsupported language. File is not indexed.

0001 /*
0002     SPDX-FileCopyrightText: 2019 Michail Vourlakos <mvourlakos@gmail.com>
0003     SPDX-License-Identifier: GPL-2.0-or-later
0004 */
0005 
0006 import QtQuick 2.0
0007 import QtQuick.Layouts 1.3
0008 
0009 import org.kde.plasma.components 2.0 as PlasmaComponents
0010 
0011 PlasmaComponents.Label {
0012     Layout.fillWidth: true
0013     Layout.topMargin: isFirstSubCategory ? 0 : units.smallSpacing * 2
0014     Layout.bottomMargin: units.smallSpacing
0015     horizontalAlignment: Text.AlignHCenter
0016     opacity: 0.4
0017 
0018     property bool isFirstSubCategory: false
0019 }