fix(YouTube - Custom filter): Use new lines between components instead of commas (#2952)
Co-authored-by: oSumAtrIX <johan.melkonyan1@web.de>
This commit is contained in:
parent
4e6fc02b34
commit
ecb2e32b1e
|
@ -11,6 +11,7 @@ import app.revanced.patcher.patch.BytecodePatch
|
||||||
import app.revanced.patcher.patch.annotations.DependsOn
|
import app.revanced.patcher.patch.annotations.DependsOn
|
||||||
import app.revanced.patcher.patch.annotations.Patch
|
import app.revanced.patcher.patch.annotations.Patch
|
||||||
import app.revanced.patcher.util.smali.ExternalLabel
|
import app.revanced.patcher.util.smali.ExternalLabel
|
||||||
|
import app.revanced.patches.shared.settings.preference.impl.InputType
|
||||||
import app.revanced.patches.shared.settings.preference.impl.StringResource
|
import app.revanced.patches.shared.settings.preference.impl.StringResource
|
||||||
import app.revanced.patches.shared.settings.preference.impl.SwitchPreference
|
import app.revanced.patches.shared.settings.preference.impl.SwitchPreference
|
||||||
import app.revanced.patches.shared.settings.preference.impl.TextPreference
|
import app.revanced.patches.shared.settings.preference.impl.TextPreference
|
||||||
|
@ -234,8 +235,9 @@ class HideLayoutComponentsPatch : BytecodePatch(
|
||||||
StringResource("revanced_custom_filter_strings_title", "Custom filter"),
|
StringResource("revanced_custom_filter_strings_title", "Custom filter"),
|
||||||
StringResource(
|
StringResource(
|
||||||
"revanced_custom_filter_strings_summary",
|
"revanced_custom_filter_strings_summary",
|
||||||
"Filter components by their name separated by a comma"
|
"List of components to filter separated by new line"
|
||||||
)
|
),
|
||||||
|
inputType = InputType.TEXT_MULTI_LINE
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue