Fix opacity blending on colored brush strokes (#1119)

Make apply opacity function use associated alpha
This commit is contained in:
Dennis Kobert 2023-04-13 10:44:33 +02:00 committed by Keavon Chambers
parent 951d9912bf
commit 79dade24e5

View file

@ -608,7 +608,7 @@ impl Color {
}
pub fn apply_opacity(&self, opacity: f32) -> Self {
Self::from_rgbaf32_unchecked(self.r(), self.g(), self.b(), self.a() * opacity)
Self::from_rgbaf32_unchecked(self.r() * opacity, self.g() * opacity, self.b() * opacity, self.a() * opacity)
}
pub fn to_associated_alpha(&self, alpha: f32) -> Self {