summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorTomasz Sterna <tomek@xiaoka.com>2014-08-01 12:58:36 +0200
committerTomasz Sterna <tomek@xiaoka.com>2014-08-02 00:55:18 +0200
commit0fa2ca1ee1dec8d7355115426a762f9fe808f2f6 (patch)
tree663d80a1617fa856f4f0f5fb56f1200294ba9e0c /app
parent006d08310e5fafa8b66520318598122603e32d8c (diff)
Implemented option to disable phone call forwarding to watch. closes #13
Diffstat (limited to 'app')
-rw-r--r--app/qml/pages/ManagerPage.qml9
1 files changed, 9 insertions, 0 deletions
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
@@ -141,6 +142,14 @@ Page {
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
automaticCheck: false