From 8105a0b971e73335950066ecc2c7d805490a9d70 Mon Sep 17 00:00:00 2001 From: Marco Allegretti Date: Thu, 9 Apr 2026 12:29:38 +0200 Subject: [PATCH] Add launch action to dock favourite context menu Right-click on a pinned favourite in the dock now shows: - Launch: opens the app (using its own icon) - Remove from Dock: existing unpin action, renamed for clarity --- containments/homescreens/folio/qml/FavouritesBar.qml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/containments/homescreens/folio/qml/FavouritesBar.qml b/containments/homescreens/folio/qml/FavouritesBar.qml index 283f2c85..5ee175aa 100644 --- a/containments/homescreens/folio/qml/FavouritesBar.qml +++ b/containments/homescreens/folio/qml/FavouritesBar.qml @@ -341,9 +341,14 @@ MouseArea { } actions: [ + Kirigami.Action { + icon.name: delegate.delegateModel.application.icon + text: i18n("Launch") + onTriggered: appDelegate.launchApp() + }, Kirigami.Action { icon.name: "emblem-favorite" - text: i18n("Remove") + text: i18n("Remove from Dock") enabled: !folio.FolioSettings.lockLayout onTriggered: folio.FavouritesModel.removeEntry(delegate.index) }