Skip to content

Commit

Permalink
fix: remove duplicated DNS settings in meta-feature
Browse files Browse the repository at this point in the history
  • Loading branch information
stevejohnson7 committed Nov 2, 2023
1 parent 6caa238 commit e47dca0
Showing 1 changed file with 0 additions and 41 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,47 +105,6 @@ class MetaFeatureSettingsDesign(

}

category(R.string.dns)

val dnsDependencies: MutableList<Preference> = mutableListOf()

val dns = selectableList(
value = configuration.dns::enable,
values = arrayOf(
null,
true,
false
),
valuesText = arrayOf(
R.string.dont_modify,
R.string.force_enable,
R.string.use_built_in,
),
title = R.string.strategy
) {
listener = OnChangedListener {
if (configuration.dns.enable == false) {
dnsDependencies.forEach {
it.enabled = false
}
} else {
dnsDependencies.forEach {
it.enabled = true
}
}
}
}

selectableList(
value = configuration.dns::preferH3,
values = booleanValues,
valuesText = booleanValuesText,
title = R.string.prefer_h3,
configure = dnsDependencies::add,
)

dns.listener?.onChanged()

category(R.string.sniffer_setting)

val snifferDependencies: MutableList<Preference> = mutableListOf()
Expand Down

0 comments on commit e47dca0

Please sign in to comment.