diff --git a/lawnchair/src/app/lawnchair/ui/preferences/components/IconShapePreference.kt b/lawnchair/src/app/lawnchair/ui/preferences/components/IconShapePreference.kt index 5c2382ca5e..30f6845087 100644 --- a/lawnchair/src/app/lawnchair/ui/preferences/components/IconShapePreference.kt +++ b/lawnchair/src/app/lawnchair/ui/preferences/components/IconShapePreference.kt @@ -53,10 +53,10 @@ fun iconShapeEntries(context: Context): List> { return listOf( ListPreferenceEntry(systemShape) { stringResource(id = R.string.icon_shape_system) }, ListPreferenceEntry(IconShape.Circle) { stringResource(id = R.string.icon_shape_circle) }, - ListPreferenceEntry(IconShape.Cupertino) { stringResource(id = R.string.icon_shape_cupertino) }, ListPreferenceEntry(IconShape.Cylinder) { stringResource(id = R.string.icon_shape_cylinder) }, - ListPreferenceEntry(IconShape.RoundedSquare) { stringResource(id = R.string.icon_shape_rounded_square) }, + ListPreferenceEntry(IconShape.Cupertino) { stringResource(id = R.string.icon_shape_cupertino) }, ListPreferenceEntry(IconShape.Sammy) { stringResource(id = R.string.icon_shape_sammy) }, + ListPreferenceEntry(IconShape.RoundedSquare) { stringResource(id = R.string.icon_shape_rounded_square) }, ListPreferenceEntry(IconShape.Square) { stringResource(id = R.string.icon_shape_square) }, ListPreferenceEntry(IconShape.Squircle) { stringResource(id = R.string.icon_shape_squircle) }, ListPreferenceEntry(IconShape.Teardrop) { stringResource(id = R.string.icon_shape_teardrop) }, @@ -141,4 +141,4 @@ fun IconShapePreview( style = Stroke(width = 4f), ) } -} \ No newline at end of file +}