diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-07-23 15:10:11 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-07-23 15:10:11 +0100 |
| commit | a5c629cb9b638b67a0e4c2d26fe9ab2e124bf0eb (patch) | |
| tree | 6cd463704f413259516e2888704272a371a108a6 /src/wx/timeline_labels_view.cc | |
| parent | df17bbd25da69fc38eb2dcd8b4a2531cf0bab0bc (diff) | |
Tidy up after mass rename.
Diffstat (limited to 'src/wx/timeline_labels_view.cc')
| -rw-r--r-- | src/wx/timeline_labels_view.cc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/wx/timeline_labels_view.cc b/src/wx/timeline_labels_view.cc index af9cb771e..56228a7e7 100644 --- a/src/wx/timeline_labels_view.cc +++ b/src/wx/timeline_labels_view.cc @@ -32,13 +32,13 @@ TimelineLabelsView::TimelineLabelsView (Timeline& tl) : TimelineView (tl) , _threed (true) , _audio_tracks (0) - , _caption_tracks (0) + , _text_tracks (0) , _atmos (true) { wxString labels[] = { _("Video"), _("Audio"), - _("Captions"), + _("Subtitles/captions"), _("Atmos") }; @@ -70,9 +70,9 @@ TimelineLabelsView::do_paint (wxGraphicsContext* gc, list<dcpomatic::Rect<int> > gc->DrawText (_("Video"), 0, (ty + fy) / 2 - 8); fy = ty; - if (_caption_tracks) { - ty = fy + _caption_tracks * h; - gc->DrawText (_("Captions"), 0, (ty + fy) / 2 - 8); + if (_text_tracks) { + ty = fy + _text_tracks * h; + gc->DrawText (_("Subtitle/captions"), 0, (ty + fy) / 2 - 8); fy = ty; } @@ -101,9 +101,9 @@ TimelineLabelsView::set_audio_tracks (int n) } void -TimelineLabelsView::set_caption_tracks (int n) +TimelineLabelsView::set_text_tracks (int n) { - _caption_tracks = n; + _text_tracks = n; } void |
