From ec59393e380bb2af7becad4c8608b57396e64deb Mon Sep 17 00:00:00 2001 From: inotia00 Date: Tue, 20 Jun 2023 23:07:52 +0900 Subject: [PATCH] fix build error --- .../patches/youtube/seekbar/seekbar/patch/HideSeekbarPatch.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/app/revanced/patches/youtube/seekbar/seekbar/patch/HideSeekbarPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/seekbar/seekbar/patch/HideSeekbarPatch.kt index f3ed75c2e..0cbf3ec53 100644 --- a/src/main/kotlin/app/revanced/patches/youtube/seekbar/seekbar/patch/HideSeekbarPatch.kt +++ b/src/main/kotlin/app/revanced/patches/youtube/seekbar/seekbar/patch/HideSeekbarPatch.kt @@ -14,10 +14,10 @@ import app.revanced.patcher.patch.PatchResultSuccess import app.revanced.patcher.patch.annotations.DependsOn import app.revanced.patcher.patch.annotations.Patch import app.revanced.patcher.util.smali.ExternalLabel +import app.revanced.patches.youtube.seekbar.seekbarcolor.patch.SeekbarColorPatch import app.revanced.patches.youtube.utils.fingerprints.SeekbarFingerprint import app.revanced.patches.youtube.utils.fingerprints.SeekbarOnDrawFingerprint import app.revanced.patches.youtube.utils.annotations.YouTubeCompatibility -import app.revanced.patches.youtube.seekbar.seekbarcolor.resource.patch.SeekbarColorResourcePatch import app.revanced.patches.youtube.utils.settings.resource.patch.SettingsPatch import app.revanced.util.integrations.Constants.SEEKBAR @@ -26,7 +26,7 @@ import app.revanced.util.integrations.Constants.SEEKBAR @Description("Hides the seekbar in video player and video thumbnails.") @DependsOn( [ - SeekbarColorResourcePatch::class, + SeekbarColorPatch::class, SettingsPatch::class ] )