Skip to content

Commit

Permalink
Fix #4 blend mode multiply not working on lower API versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
riggaroo committed Nov 7, 2021
1 parent 756cf7b commit 1077319
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ internal fun SaturationValueArea(
}
) {
drawRect(blackGradientBrush)
drawRect(currentColorGradientBrush, blendMode = BlendMode.Multiply)
drawRect(currentColorGradientBrush, blendMode = BlendMode.Modulate)
drawRect(Color.Gray, style = Stroke(0.5.dp.toPx()))

drawCircleSelector(currentColor)
Expand Down

0 comments on commit 1077319

Please sign in to comment.