aboutsummaryrefslogtreecommitdiff
path: root/qml/SettingsPage.qml
diff options
context:
space:
mode:
authorMiquel Lionel <lionel@les-miquelots.net>2021-11-04 05:38:46 +0100
committerMiquel Lionel <lionel@les-miquelots.net>2021-11-04 05:38:46 +0100
commitb759e3578047b96968c9b9a817389d374850de59 (patch)
treee50ee76e23f72c6c850ec6ff3bdd67fd827e0586 /qml/SettingsPage.qml
parenta414601fcab42c883c1c5e391b76e91a92446f91 (diff)
downloadkdeltachat-b759e3578047b96968c9b9a817389d374850de59.tar.gz
kdeltachat-b759e3578047b96968c9b9a817389d374850de59.zip
Implement sending Videochat invitations
- layers popping function was hard to read in main.qml, add a line - add editable videochat instance setting
Diffstat (limited to 'qml/SettingsPage.qml')
-rw-r--r--qml/SettingsPage.qml7
1 files changed, 7 insertions, 0 deletions
diff --git a/qml/SettingsPage.qml b/qml/SettingsPage.qml
index 1e28917..c963162 100644
--- a/qml/SettingsPage.qml
+++ b/qml/SettingsPage.qml
@@ -61,6 +61,13 @@ Kirigami.ScrollablePage {
selectByMouse: true
}
+ TextArea {
+ Kirigami.FormData.label: "Videochat instance: "
+ text: root.context.getConfig("webrtc_instance")
+ onEditingFinished: root.context.setConfig("webrtc_instance", text)
+ selectByMouse: true
+ }
+
Switch {
text: "Prefer end-to-end encryption"
checked: root.context.getConfig("e2ee_enabled") == "1"