summary refs log tree commit diff
path: root/resources/qml
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2021-07-24 23:24:28 +0000
committerNicolas Werner <nicolas.werner@hotmail.de>2021-07-24 23:24:28 +0000
commitd55f7ea12b221bcd1861356bbc6b8763c2191002 (patch)
tree4887df15c8da20f439fbf22a89caf2087ff707e3 /resources/qml
parentFix edge case that could lead to no new one time keys being uploaded (diff)
parentUpdate translations (diff)
downloadnheko-d55f7ea12b221bcd1861356bbc6b8763c2191002.tar.xz
Merge branch 'remove_key_response_option' into 'master'
Remove 'respond to key requests' functionality

See merge request nheko-reborn/nheko!10
Diffstat (limited to 'resources/qml')
-rw-r--r--resources/qml/RoomSettings.qml17
1 files changed, 0 insertions, 17 deletions
diff --git a/resources/qml/RoomSettings.qml b/resources/qml/RoomSettings.qml

index accb5637..b8e527a5 100644 --- a/resources/qml/RoomSettings.qml +++ b/resources/qml/RoomSettings.qml
@@ -233,23 +233,6 @@ ApplicationWindow { } MatrixText { - visible: roomSettings.isEncryptionEnabled - text: qsTr("Respond to key requests") - } - - ToggleButton { - visible: roomSettings.isEncryptionEnabled - ToolTip.text: qsTr("Whether or not the client should respond automatically with the session keys - upon request. Use with caution, this is a temporary measure to test the - E2E implementation until device verification is completed.") - checked: roomSettings.respondsToKeyRequests - onClicked: { - roomSettings.changeKeyRequestsPreference(checked); - } - Layout.alignment: Qt.AlignRight - } - - MatrixText { text: qsTr("Sticker & Emote Settings") }