Show Remove... as the title of all submenus under Remove

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
David Heinemeier Hansson
2026-07-22 12:04:25 -07:00
co-authored by Claude Fable 5
parent 43260b29cd
commit 6ff61289fa
4 changed files with 14 additions and 10 deletions
+2 -1
View File
@@ -274,6 +274,7 @@ Item {
kind: "action",
icon: (value === current) ? "✓" : (spec.icon || ""),
label: label,
title: "",
target: "",
keywords: spec.keywordsFor(value),
description: "",
@@ -885,7 +886,7 @@ Item {
anchors.left: parent.left
anchors.right: parent.right
anchors.verticalCenter: parent.verticalCenter
text: root.filterText || (root.dmenuActive ? (root.dmenuPrompt + "…") : ((root.item(root.activeMenu) ? root.item(root.activeMenu).label : "Go") + "…"))
text: root.filterText || (root.dmenuActive ? (root.dmenuPrompt + "…") : ((root.item(root.activeMenu) ? (root.item(root.activeMenu).title || root.item(root.activeMenu).label) : "Go") + "…"))
color: root.foreground
opacity: root.filterText ? 1 : 0.58
font.family: root.fontFamily