Skip to content
Snippets Groups Projects
Commit 75c36ca1 authored by jkito's avatar jkito :skull:
Browse files

gui: show bridge icon when transport is kcp

parent 003bcce0
Branches
Tags
1 merge request!237gui: show bridge icon when transport is kcp and other misc UI fixes
......@@ -224,8 +224,10 @@ ToolBar {
function isBridgeSelected() {
if (ctx && ctx.transport == "obfs4") {
return true;
} else {
return false;
}
if (ctx && ctx.transport == "kcp") {
return true;
}
return false;
}
}
......@@ -314,9 +314,11 @@ ThemedPage {
function isBridgeSelected() {
if (ctx && ctx.transport == "obfs4") {
return true
} else {
return false
}
if (ctx && ctx.transport == "kcp") {
return true
}
return false
}
function getManualAnchor() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment