Skip to content

Commit 3cdf49e

Browse files
committed
addec 'color' as an option
1 parent 4fa5223 commit 3cdf49e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/renderer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ impl FractalRenderer {
4949
let remove_centre = settings.get_bool("remove_centre").unwrap_or(true);
5050
let data_type = match settings.get_str("export").unwrap_or(String::from("COLOUR")).to_ascii_uppercase().as_ref() {
5151
"RAW" | "EXR" => DataType::RAW,
52-
"COLOUR" | "PNG" => DataType::COLOUR,
52+
"COLOUR" | "COLOR" | "PNG" => DataType::COLOUR,
5353
"KFB" => DataType::KFB,
5454
"BOTH" => DataType::BOTH,
5555
_ => DataType::COLOUR

0 commit comments

Comments
 (0)