search: clipboard: nicer delete button, add copy button

This commit is contained in:
end-4
2025-08-31 17:57:16 +02:00
parent e0cf3d0962
commit e636920c44
2 changed files with 23 additions and 8 deletions
@@ -321,9 +321,16 @@ Item { // Wrapper
Cliphist.copy(entry)
},
actions: [
{
name: "Copy",
materialIcon: "content_copy",
execute: () => {
Cliphist.copy(entry);
}
},
{
name: "Delete",
icon: "delete",
materialIcon: "delete",
execute: () => {
Cliphist.deleteEntry(entry);
}