diff options
Diffstat (limited to 'gui/components/Preferences.qml')
-rw-r--r-- | gui/components/Preferences.qml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gui/components/Preferences.qml b/gui/components/Preferences.qml index 23aae05..546ff8b 100644 --- a/gui/components/Preferences.qml +++ b/gui/components/Preferences.qml @@ -248,15 +248,16 @@ ThemedPage { } Component.onCompleted: { - if (ctx && ctx.transport == "obfs4") { - useBridgesCheckBox.checked = true - } if (ctx && ctx.offersUdp == "false") { useUDP.enabled = false } if (ctx && ctx.offersUdp && ctx.udp == "true") { useUDP.checked = true } + if (ctx && ctx.transport == "obfs4") { + useBridgesCheckBox.checked = true + useUDP.enabled = false + } // disabled for now, will be on next release /* if (ctx && ctx.hasTor == "true") { |