diff options
Diffstat (limited to 'app')
| -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 |
