From d0cb028a841016e1be2e7447e452c028b32fb5fb Mon Sep 17 00:00:00 2001 From: Rituka Patwal Date: Tue, 26 Mar 2019 12:30:04 +0000 Subject: [PATCH] add icons for pair, accept, reject --- app/qml/DevicePage.qml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/qml/DevicePage.qml b/app/qml/DevicePage.qml index 32f11db7a..0739671b4 100644 --- a/app/qml/DevicePage.qml +++ b/app/qml/DevicePage.qml @@ -153,8 +153,8 @@ Kirigami.Page readonly property var actions: [] Button { anchors.centerIn: parent - text: i18n("Pair") + icon.name:"network-connect" onClicked: deviceView.currentDevice.requestPair() } } @@ -167,11 +167,13 @@ Kirigami.Page anchors.centerIn: parent Button { text: i18n("Accept") + icon.name:"dialog-ok" onClicked: deviceView.currentDevice.acceptPairing() } Button { text: i18n("Reject") + icon.name:"dialog-cancel" onClicked: deviceView.currentDevice.rejectPairing() } }