From f63347297df4aa2a6d79c61912147656bb064eaa Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Fri, 3 Feb 2023 04:44:54 +0100 Subject: [PATCH] chore(youtube/hide-video-action-buttons): use proper name and description Signed-off-by: oSumAtrIX --- .../youtube/layout/buttons/patch/HideButtonsPatch.kt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/patch/HideButtonsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/patch/HideButtonsPatch.kt index bd82e1dda..3de828654 100644 --- a/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/patch/HideButtonsPatch.kt +++ b/src/main/kotlin/app/revanced/patches/youtube/layout/buttons/patch/HideButtonsPatch.kt @@ -9,18 +9,18 @@ import app.revanced.patcher.patch.PatchResultSuccess import app.revanced.patcher.patch.ResourcePatch import app.revanced.patcher.patch.annotations.DependsOn import app.revanced.patcher.patch.annotations.Patch -import app.revanced.patches.youtube.misc.litho.filter.patch.LithoFilterPatch -import app.revanced.patches.youtube.layout.buttons.annotations.HideButtonsCompatibility import app.revanced.patches.shared.mapping.misc.patch.ResourceMappingPatch -import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch import app.revanced.patches.shared.settings.preference.impl.PreferenceScreen import app.revanced.patches.shared.settings.preference.impl.StringResource import app.revanced.patches.shared.settings.preference.impl.SwitchPreference +import app.revanced.patches.youtube.layout.buttons.annotations.HideButtonsCompatibility +import app.revanced.patches.youtube.misc.litho.filter.patch.LithoFilterPatch +import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch @Patch @DependsOn([ResourceMappingPatch::class, LithoFilterPatch::class]) -@Name("hide-video-buttons") -@Description("Adds options to hide action buttons under a video.") +@Name("hide-video-action-buttons") +@Description("Adds the options to hide action buttons under a video.") @HideButtonsCompatibility @Version("0.0.1") class HideButtonsPatch : ResourcePatch {