diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-01-11 10:24:22 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-01-11 10:24:22 +0000 |
| commit | 3d236df4bbe1e7e8a8c8c4c467c9b9178ace00f1 (patch) | |
| tree | fe158d7e4323010c3659d94e3f56363e07999be2 /src/subtitle.cc | |
| parent | becc88e69211c07b1fdcd6572084d43728116ee2 (diff) | |
Forward-port STL binary writer from master, pulling in horizontal position stuff.
Diffstat (limited to 'src/subtitle.cc')
| -rw-r--r-- | src/subtitle.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/subtitle.cc b/src/subtitle.cc index 663c161..c146480 100644 --- a/src/subtitle.cc +++ b/src/subtitle.cc @@ -37,7 +37,8 @@ Subtitle::same_metadata (RawSubtitle s) const } Line::Line (RawSubtitle s) - : vertical_position (s.vertical_position) + : horizontal_position (s.horizontal_position) + , vertical_position (s.vertical_position) { blocks.push_back (Block (s)); } |
