diff options
| author | Tomasz Sterna <tomek@xiaoka.com> | 2014-08-01 12:58:36 +0200 |
|---|---|---|
| committer | Tomasz Sterna <tomek@xiaoka.com> | 2014-08-02 00:55:18 +0200 |
| commit | 0fa2ca1ee1dec8d7355115426a762f9fe808f2f6 (patch) | |
| tree | 663d80a1617fa856f4f0f5fb56f1200294ba9e0c /app/qml/pages | |
| parent | 006d08310e5fafa8b66520318598122603e32d8c (diff) | |
Implemented option to disable phone call forwarding to watch. closes #13
Diffstat (limited to 'app/qml/pages')
| -rw-r--r-- | app/qml/pages/ManagerPage.qml | 9 |
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 |
