diff options
Diffstat (limited to 'qml')
-rw-r--r-- | qml/SettingsPage.qml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/qml/SettingsPage.qml b/qml/SettingsPage.qml index a0194ca..eaabed2 100644 --- a/qml/SettingsPage.qml +++ b/qml/SettingsPage.qml @@ -60,6 +60,12 @@ Kirigami.Page { } Switch { + text: "Send copy to self" + checked: settingsPageRoot.context.getConfig("bcc_self") == "1" + onToggled: settingsPageRoot.context.setConfig("bcc_self", checked ? "1" : "0") + } + + Switch { text: "Move to DeltaChat" checked: settingsPageRoot.context.getConfig("mvbox_move") == "1" onToggled: settingsPageRoot.context.setConfig("mvbox_move", checked ? "1" : "0") |