diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-10-15 22:25:42 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-10-17 15:35:14 +0200 |
| commit | ccd69987ab861ea4521836fa2a5227e2dfac3479 (patch) | |
| tree | 0bffcddaf011d5918e68f7e8a6e089a4837eea1d /src/lib/util.cc | |
| parent | 2b793cd6eac56b06a2d694591cddecb3ae2b099d (diff) | |
Basic and slightly inaccurate support for <Space> in subtitles (#2103).v2.15.170
Adding horizontal space to a Pango layout is hard, and I think this
change probably gets it slightly wrong, but it's a step in the right
direction.
Diffstat (limited to 'src/lib/util.cc')
| -rw-r--r-- | src/lib/util.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/util.cc b/src/lib/util.cc index 78ed8da99..c165a5129 100644 --- a/src/lib/util.cc +++ b/src/lib/util.cc @@ -406,7 +406,7 @@ DCPOMATIC_ENABLE_WARNINGS list<StringText> subs; dcp::SubtitleString ss( optional<string>(), false, false, false, dcp::Colour(), 42, 1, dcp::Time(), dcp::Time(), 0, dcp::HAlign::CENTER, 0, dcp::VAlign::CENTER, dcp::Direction::LTR, - "Hello dolly", dcp::Effect::NONE, dcp::Colour(), dcp::Time(), dcp::Time() + "Hello dolly", dcp::Effect::NONE, dcp::Colour(), dcp::Time(), dcp::Time(), 0 ); subs.push_back (StringText(ss, 0)); render_text (subs, list<shared_ptr<Font>>(), dcp::Size(640, 480), DCPTime(), 24); |
