clide/qml/Menu/ClideMenuBarItem.qml

19 lines
333 B
QML
Raw Normal View History

2025-03-29 08:01:13 -04:00
import QtQuick
import QtQuick.Controls
2025-03-30 11:20:21 -04:00
import clide.module 1.0
2025-03-29 08:01:13 -04:00
MenuItem {
id: root
background: Rectangle {
2025-03-30 11:20:21 -04:00
color: root.hovered ? RustColors.hovered : RustColors.unhovered
2025-03-29 08:01:13 -04:00
radius: 2.5
}
contentItem: IconLabel {
color: "black"
2025-03-29 08:01:13 -04:00
font.family: "Helvetica"
text: root.text
}
}