Skip to content

Commit 9ee6607

Browse files
committed
Use TileMode.Decal instead of TileMode.Clamp for blurs
1 parent e707e78 commit 9ee6607

File tree

1 file changed

+1
-1
lines changed
  • ui/core/src/commonMain/kotlin/com/tunjid/heron/ui/modifiers

1 file changed

+1
-1
lines changed

ui/core/src/commonMain/kotlin/com/tunjid/heron/ui/modifiers/ModifierExt.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ fun GraphicsLayerScope.blurEffect(
6767
this.renderEffect = BlurEffect(
6868
radiusX = horizontalBlurPixels,
6969
radiusY = verticalBlurPixels,
70-
edgeTreatment = TileMode.Clamp,
70+
edgeTreatment = TileMode.Decal,
7171
)
7272

7373
this.shape = shape

0 commit comments

Comments
 (0)