diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-04-22 10:52:13 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-04-22 10:52:13 +0100 |
| commit | e0b9aa27ec06ccd97cc32f9d7f14b8a8e99df57c (patch) | |
| tree | 6dc2d8171352ff92c5579af8fbe587032e889efe /src/wx/timeline_labels_view.cc | |
| parent | 2ab85e1b8c6652ec65b3ac174cb656475a76c471 (diff) | |
Split left-only and right-only video content in the timeline (#845).
Diffstat (limited to 'src/wx/timeline_labels_view.cc')
| -rw-r--r-- | src/wx/timeline_labels_view.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/timeline_labels_view.cc b/src/wx/timeline_labels_view.cc index c9aaef1e4..9b55c2bd0 100644 --- a/src/wx/timeline_labels_view.cc +++ b/src/wx/timeline_labels_view.cc @@ -59,6 +59,6 @@ TimelineLabelsView::do_paint (wxGraphicsContext* gc, list<dcpomatic::Rect<int> > int const h = _timeline.track_height (); gc->SetFont (gc->CreateFont(wxNORMAL_FONT->Bold(), wxColour (0, 0, 0))); gc->DrawText (_("Video"), 0, h / 2); - gc->DrawText (_("Subtitles"), 0, 3 * h / 2); + gc->DrawText (_("Subtitles"), 0, 5 * h / 2); gc->DrawText (_("Audio"), 0, h + max (_timeline.tracks(), 2) * h / 2); } |
