Skip to content

Commit c02f095

Browse files
committed
🎥 Fixed creating the colour dodge blend mode from a string.
1 parent 6b2e463 commit c02f095

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/blend_mode.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ impl BlendMode {
126126
"addition" => Some(Self::Addition),
127127
"color" => Some(Self::Color),
128128
"colorBurn" | "color_burn" | "color-burn" => Some(Self::ColorBurn),
129+
"colorDodge" | "color_dodge" | "color-dodge" => Some(Self::ColorDodge),
129130
"darken" => Some(Self::Darken),
130131
"destinationIn" | "destination_in" | "destination-in" => Some(Self::DestinationIn),
131132
"destinationOut" | "destination_out" | "destination-out" => Some(Self::DestinationOut),

0 commit comments

Comments
 (0)