mirror of
https://gitgud.io/wackyideas/aerothemeplasma.git
synced 2024-08-15 00:43:43 +00:00
20 lines
564 B
QML
20 lines
564 B
QML
|
/*
|
||
|
SPDX-FileCopyrightText: 2017 Chris Holland <zrenfire@gmail.com>
|
||
|
|
||
|
SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
||
|
*/
|
||
|
|
||
|
import QtQuick
|
||
|
import QtQuick.Layouts
|
||
|
import org.kde.kirigami as Kirigami
|
||
|
import org.kde.plasma.components as PlasmaComponents3
|
||
|
|
||
|
PlasmaComponents3.ToolButton {
|
||
|
id: smallToolButton
|
||
|
readonly property int size: Math.ceil(Kirigami.Units.iconSizes.small + Kirigami.Units.smallSpacing * 2)
|
||
|
implicitWidth: size
|
||
|
implicitHeight: size
|
||
|
|
||
|
display: PlasmaComponents3.AbstractButton.IconOnly
|
||
|
}
|