summaryrefslogtreecommitdiff
path: root/src/wx/subtitle_view.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-07-04 11:43:55 +0100
committerCarl Hetherington <cth@carlh.net>2014-07-04 11:43:55 +0100
commit9655db97eae5a6137a45ad809dbf42528dc74408 (patch)
tree178ecd2e313ceb6aa7d11fbadb950c53381f1280 /src/wx/subtitle_view.cc
parentc88a8a6ec6b396dc90d40a4843160d616a45db76 (diff)
Add 'starting' option to subtitles_during().
Diffstat (limited to 'src/wx/subtitle_view.cc')
-rw-r--r--src/wx/subtitle_view.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/subtitle_view.cc b/src/wx/subtitle_view.cc
index e65d9abc0..25392c81a 100644
--- a/src/wx/subtitle_view.cc
+++ b/src/wx/subtitle_view.cc
@@ -66,7 +66,7 @@ SubtitleView::SubtitleView (wxWindow* parent, shared_ptr<Film> film, shared_ptr<
}
shared_ptr<SubRipDecoder> decoder (new SubRipDecoder (content));
- list<ContentTextSubtitle> subs = decoder->get_text_subtitles (ContentTimePeriod (ContentTime(), ContentTime::max ()));
+ list<ContentTextSubtitle> subs = decoder->get_text_subtitles (ContentTimePeriod (ContentTime(), ContentTime::max ()), true);
FrameRateChange const frc = film->active_frame_rate_change (content->position ());
int n = 0;
for (list<ContentTextSubtitle>::const_iterator i = subs.begin(); i != subs.end(); ++i) {