Warning, /plasma/plasma-pa/applet/contents/ui/SmallToolButton.qml is written in an unsupported language. File is not indexed.

0001 /*
0002     SPDX-FileCopyrightText: 2017 Chris Holland <zrenfire@gmail.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0005 */
0006 
0007 import QtQuick 2.0
0008 import QtQuick.Layouts 1.0
0009 import org.kde.plasma.core 2.0 as PlasmaCore
0010 import org.kde.plasma.components 3.0 as PlasmaComponents3
0011 
0012 PlasmaComponents3.ToolButton {
0013     id: smallToolButton
0014     readonly property int size: Math.ceil(PlasmaCore.Units.iconSizes.small + PlasmaCore.Units.smallSpacing * 2)
0015     implicitWidth: size
0016     implicitHeight: size
0017 
0018     display: PlasmaComponents3.AbstractButton.IconOnly
0019 }