Skip to content

Commit

Permalink
chore: Revert back default value for Overlay buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
anddea committed Jul 25, 2024
1 parent 1e93dad commit 1ea7b9a
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ object OverlayButtonsPatch : BaseResourcePatch(
private const val DEFAULT_MARGIN = "0.0dip"
private const val WIDER_MARGIN = "6.0dip"

private const val DEFAULT_ICON = "bold"
private const val DEFAULT_ICON = "rounded"

// Option to select icon type
private val IconType = stringPatchOption(
key = "IconType",
default = DEFAULT_ICON,
values = mapOf(
"Bold" to DEFAULT_ICON,
"Rounded" to "rounded",
"Bold" to "bold",
"Rounded" to DEFAULT_ICON,
"Thin" to "thin"
),
title = "Icon type",
Expand Down

0 comments on commit 1ea7b9a

Please sign in to comment.