diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-10-06 13:29:36 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-10-06 13:29:36 +0100 |
| commit | 4ada3e7583dfdc658dbebca3c3603be1e3477c12 (patch) | |
| tree | 0516fdd142b79e7083ed3d455fe45fffce26a9a8 /src/subrip_reader.cc | |
| parent | 86440b2afe0a2b83a7e810f37b1f65dbddee90e8 (diff) | |
Template-ize collect so that any container can be used.
Add new vertical reference of TOP_OF_SUBTITLE, and use references
with line numbers as well as proportional specifiers.
Add a couple of methods to MetricTime.
Diffstat (limited to 'src/subrip_reader.cc')
| -rw-r--r-- | src/subrip_reader.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/subrip_reader.cc b/src/subrip_reader.cc index 2728d20..8bd2005 100644 --- a/src/subrip_reader.cc +++ b/src/subrip_reader.cc @@ -131,8 +131,8 @@ SubripReader::convert_line (string t, int line_number, TimePair from, TimePair t p.font_size.set_points (48); p.from = from; p.to = to; - p.vertical_position.proportional = 0.7 + line_number * 0.1; - p.vertical_position.reference = TOP; + p.vertical_position.line = line_number; + p.vertical_position.reference = TOP_OF_SUBTITLE; /* XXX: missing <font> support */ /* XXX: nesting of tags e.g. <b>foo<i>bar<b>baz</b>fred</i>jim</b> might |
