diff options
author | kali kaneko (leap communications) <kali@leap.se> | 2021-05-31 02:34:21 +0200 |
---|---|---|
committer | kali kaneko (leap communications) <kali@leap.se> | 2021-06-01 12:34:07 +0200 |
commit | 3fdbb895b8372caa080044cade00f2de6b00ce91 (patch) | |
tree | d7415f43414a42135ed7dde190a1d66cf2501acc /gui/qml/main.qml | |
parent | 00be891d3b0cb401e642a5331aedcc399641b8ef (diff) |
[feat] obfs4 selectable from gui
Diffstat (limited to 'gui/qml/main.qml')
-rw-r--r-- | gui/qml/main.qml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gui/qml/main.qml b/gui/qml/main.qml index f75a121..cef3344 100644 --- a/gui/qml/main.qml +++ b/gui/qml/main.qml @@ -507,6 +507,14 @@ ApplicationWindow { return ctx.currentLocation + ", " + ctx.currentCountry } + function useBridges(value) { + if (value==true) { + backend.setTransport("obfs4") + } else { + backend.setTransport("openvpn") + } + } + property alias brReconnect:bridgesTab.displayReconnect } |