Skip to content

Commit

Permalink
Fix Cerulean skin name
Browse files Browse the repository at this point in the history
Closes #19
  • Loading branch information
kirill-grouchnikov committed Feb 4, 2022
1 parent 7be8ded commit 2323df5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Expand Up @@ -450,7 +450,8 @@ private fun TopLevelPopupContent(
)
}) { measurables, _ ->
val placeables = measurables.mapIndexed { index, measurable ->
// Measure each child with fixed (widest) width and fixed (tallest) height
// Measure each child with fixed (widest) width and matching height (button
// height or separator height)
measurable.measure(
Constraints.fixed(
width = contentLayoutInfo.generalContentSize.width.roundToInt(),
Expand Down
Expand Up @@ -203,7 +203,7 @@ fun ceruleanSkin(): AuroraSkinDefinition {
painters.addOverlayPainter(TopShadowOverlayPainter.getInstance(100), DecorationAreaType.Toolbar)

return AuroraSkinDefinition(
displayName = "Green Magic",
displayName = "Cerulean",
colors = ceruleanSkinColors(),
painters = painters,
buttonShaper = ClassicButtonShaper()
Expand Down

0 comments on commit 2323df5

Please sign in to comment.