[system/kup] plasmoid-qt6/contents/ui: applet: display "configure" and "refresh" as standalone icons
Nate Graham <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit 7a640fd24bc0b9ae7fe2822fc28afb742e8740ee by Nate Graham, on behalf of Tomáš Hnyk.
Committed on 27/07/2026 at 18:51.
Pushed by ngraham into branch 'master'.
applet: display "configure" and "refresh" as standalone icons
They are self-explanatory so there is no need for a menu. Plus, all
other applets do not put configuration behind a menu
M +2 -0 plasmoid-qt6/contents/ui/main.qml
https://invent.kde.org/system/kup/-/commit/7a640fd24bc0b9ae7fe2822fc28afb742e8740ee
diff --git a/plasmoid-qt6/contents/ui/main.qml b/plasmoid-qt6/contents/ui/main.qml
index d2a589a..72820a4 100644
--- a/plasmoid-qt6/contents/ui/main.qml
+++ b/plasmoid-qt6/contents/ui/main.qml
@@ -76,11 +76,13 @@ PlasmoidItem {
PlasmaCore.Action {
text: i18nd("kup", "Reload Backup Plans")
icon.name: "view-refresh"
+ priority: PlasmaCore.Action.HighPriority
onTriggered: reloadKup()
},
PlasmaCore.Action {
text: i18nd("kup", "Configure Backup Plans…")
icon.name: "configure"
+ priority: PlasmaCore.Action.HighPriority
onTriggered: configureKup()
}
]