From 0fa2ca1ee1dec8d7355115426a762f9fe808f2f6 Mon Sep 17 00:00:00 2001 From: Tomasz Sterna Date: Fri, 1 Aug 2014 12:58:36 +0200 Subject: Implemented option to disable phone call forwarding to watch. closes #13 --- app/qml/pages/ManagerPage.qml | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'app') diff --git a/app/qml/pages/ManagerPage.qml b/app/qml/pages/ManagerPage.qml index ecb7610..303c2fa 100644 --- a/app/qml/pages/ManagerPage.qml +++ b/app/qml/pages/ManagerPage.qml @@ -41,6 +41,7 @@ Page { id: settings path: "/org/pebbled/settings" property bool silentWhenConnected: false + property bool incomingCallNotification: true property bool notificationsCommhistoryd: true property bool notificationsMissedCall: true property bool notificationsEmails: false @@ -140,6 +141,14 @@ Page { anchors.right: parent.right anchors.rightMargin: Theme.paddingMedium } + TextSwitch { + text: qsTr("Forward phone calls") + checked: settings.incomingCallNotification + automaticCheck: false + onClicked: { + settings.incomingCallNotification = !settings.incomingCallNotification; + } + } TextSwitch { text: qsTr("Silent when connected") checked: settings.silentWhenConnected -- cgit v1.2.3