aboutsummaryrefslogtreecommitdiff
path: root/qml/SettingsPage.qml
diff options
context:
space:
mode:
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"