bar/modules/Scale.qml (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
//Scale.qml
import QtQuick
import Quickshell
import QtQuick.Layouts
import Quickshell.Services.UPower
import "../.."
import "classes"
RowLayout {
spacing: 4
TopbarIcon {
text: (Size.scale == 1.5) ? Icons.modules.size : ""
font.family: font_icon.name
// anchors.centerIn: parent
Layout.alignment: Qt.AlignHCenter
leftPadding: 4
}
}
|