From 644df800908117e8f9113b57ae992441f60fc307 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Wed, 14 Jan 2026 20:59:26 -0500 Subject: [PATCH] Don't show "Configure Web Shortcuts" if there are none This prevents some weird edge cases where the Configure action is visible, but nothing is actually searchable - like for images. --- src/timeline/DelegateContextMenu.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/timeline/DelegateContextMenu.qml b/src/timeline/DelegateContextMenu.qml index f8b90cdd6..7771b6a43 100644 --- a/src/timeline/DelegateContextMenu.qml +++ b/src/timeline/DelegateContextMenu.qml @@ -373,7 +373,7 @@ KirigamiComponents.ConvergentContextMenu { Kirigami.Action { text: i18nc("@action:inmenu", "Configure Web Shortcuts…") icon.name: "configure" - visible: !Controller.isFlatpak && webShortcutModel.enabled + visible: !Controller.isFlatpak && webShortcutModel.enabled && webShortcutModelAction.visible onTriggered: webShortcutModel.configureWebShortcuts() }