diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-06-08 12:42:03 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-06-08 12:42:03 +0100 |
| commit | cfea0afd5971ee749142616fe7bc0bb70526619e (patch) | |
| tree | 40c5848f07076081f76276d7be527f2a4f0e9f23 /src | |
| parent | bc726e825c8175999bf89a0c1936b97e4479a3dd (diff) | |
Fix incorrect default effect colour.
Diffstat (limited to 'src')
| -rw-r--r-- | src/subtitle_asset.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/subtitle_asset.cc b/src/subtitle_asset.cc index 19f7fa37..be49d8cf 100644 --- a/src/subtitle_asset.cc +++ b/src/subtitle_asset.cc @@ -346,7 +346,7 @@ SubtitleAsset::maybe_add_subtitle (string text, list<ParseState> const & parse_s ps.direction.get_value_or (DIRECTION_LTR), text, ps.effect.get_value_or (NONE), - ps.effect_colour.get_value_or (dcp::Colour (255, 255, 255)), + ps.effect_colour.get_value_or (dcp::Colour (0, 0, 0)), ps.fade_up_time.get_value_or(Time()), ps.fade_down_time.get_value_or(Time()) ) |
