Clean up context menus.

This commit is contained in:
2026-02-07 12:59:44 -05:00
parent c0f38b531d
commit 6f2a655497
7 changed files with 128 additions and 125 deletions

View File

@@ -0,0 +1,18 @@
import QtQuick
import QtQuick.Controls.Basic
import clide.module 1.0
MenuItem {
id: root
background: Rectangle {
color: root.hovered ? RustColors.hovered : RustColors.unhovered
radius: 1.0
}
contentItem: IconLabel {
color: "black"
font.family: "Helvetica"
text: root.text
}
}