diff options
Diffstat (limited to 'desktop/modules/kdeconnect')
| -rw-r--r-- | desktop/modules/kdeconnect/KdeConnectRow.qml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/desktop/modules/kdeconnect/KdeConnectRow.qml b/desktop/modules/kdeconnect/KdeConnectRow.qml index 45daae9..70cc6ce 100644 --- a/desktop/modules/kdeconnect/KdeConnectRow.qml +++ b/desktop/modules/kdeconnect/KdeConnectRow.qml @@ -67,5 +67,35 @@ Rectangle { color: Theme.subtext elide: Text.ElideRight } + + Row { + width: parent.width + spacing: 6 + + Button { + visible: row.device.reachable + text: "Ring" + onClicked: row.mod.ring(row.device.id) + } + + Button { + visible: row.device.reachable + text: "Clipboard" + onClicked: row.mod.clipboard(row.device.id) + } + + Button { + visible: row.device.reachable + text: "Mount" + onClicked: row.mod.mount(row.device.id) + } + + Button { + visible: row.device.paired + text: "Unpair" + danger: true + onClicked: row.mod.unpair(row.device.id) + } + } } } |
