Skip to content

Commit 369e088

Browse files
authored
fix: temporarily hide the strict killswitch (#1612)
1 parent 48a5452 commit 369e088

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

client/ui/qml/Pages2/PageSettingsKillSwitch.qml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,8 @@ PageType {
8181
Layout.leftMargin: 16
8282
Layout.rightMargin: 16
8383

84-
enabled: SettingsController.isKillSwitchEnabled && !ConnectionController.isConnected
84+
visible: false
85+
enabled: false //SettingsController.isKillSwitchEnabled && !ConnectionController.isConnected
8586
checked: SettingsController.strictKillSwitchEnabled
8687

8788
text: qsTr("Strict KillSwitch")
@@ -103,7 +104,9 @@ PageType {
103104
}
104105
}
105106

106-
DividerType {}
107+
DividerType {
108+
visible: false
109+
}
107110

108111
LabelWithButtonType {
109112
Layout.topMargin: 32

0 commit comments

Comments
 (0)