feat(YouTube/Custom Shorts action buttons): add outlined version of actual youtube shorts action buttons (#59)

* Add files via upload

* Update ShortsActionButtonsPatch.kt

* change folder name
This commit is contained in:
MondayNitro
2024-07-03 15:06:31 +05:30
committed by GitHub
parent a69b14061b
commit 2df3a7f2da
55 changed files with 23 additions and 2 deletions

View File

@ -16,7 +16,7 @@ object ShortsActionButtonsPatch : BaseResourcePatch(
dependencies = setOf(SettingsPatch::class),
compatiblePackages = COMPATIBLE_PACKAGE
) {
private const val DEFAULT_ICON = "round"
private const val DEFAULT_ICON = "youtubeoutline"
private const val YOUTUBE_ICON = "youtube"
private val IconType = stringPatchOption(
@ -25,7 +25,8 @@ object ShortsActionButtonsPatch : BaseResourcePatch(
values = mapOf(
"Outline" to "outline",
"OutlineCircle" to "outlinecircle",
"Round" to DEFAULT_ICON,
"Round" to "round",
"YoutubeOutline" to DEFAULT_ICON,
"YouTube" to YOUTUBE_ICON
),
title = "Shorts icon style ",