Skip to content

Commit

Permalink
Fix theme generator
Browse files Browse the repository at this point in the history
  • Loading branch information
devkanro committed Oct 21, 2023
1 parent 1cb27f7 commit f33d111
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,9 @@ internal object IntUiThemeDescriptorReader {
PropertySpec.builder("iconData", iconDataClassName, KModifier.OVERRIDE)
.initializer(
CodeBlock.of(
"ThemeIconData(\n%L,\n%L,\n%L\n)",
colorPalette.toMapCodeBlock(),
"ThemeIconData(iconOverrides = \n%L,colorPalette = \n%L,\nselectionColorPalette = %L\n)",
iconOverridesBlock,
colorPalette.toMapCodeBlock(),
selectionColorPaletteBlock,
)
)
Expand Down

0 comments on commit f33d111

Please sign in to comment.