nova-shell/modules/BarLabel.qml
2026-04-12 01:00:05 +02:00

20 lines
423 B
QML

import QtQuick
import QtQuick.Controls
import "." as M
Text {
property string label: ""
property string tooltip: ""
text: label
color: M.Theme.base05
font.pixelSize: M.Theme.fontSize
font.family: M.Theme.fontFamily
verticalAlignment: Text.AlignVCenter
HoverHandler { id: _hover }
ToolTip {
visible: _hover.hovered && parent.tooltip !== ""
text: parent.tooltip
}
}