1 files changed, 0 insertions, 17 deletions
diff --git a/resources/qml/RoomSettings.qml b/resources/qml/RoomSettings.qml
index c852b837..4b06401a 100644
--- a/resources/qml/RoomSettings.qml
+++ b/resources/qml/RoomSettings.qml
@@ -222,23 +222,6 @@ ApplicationWindow {
buttons: Dialog.Ok | Dialog.Cancel
}
- 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
- }
-
Item {
// for adding extra space between sections
Layout.fillWidth: true
|