diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-04-06 00:15:10 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-04-06 00:15:10 +0100 |
| commit | 8969587a712a76fefbe929823c1aa0984ae798e8 (patch) | |
| tree | 030ced25431cbe8b3d833b43a89a7131398a3f62 /src/wx/film_viewer.cc | |
| parent | 36971ecc260b46a4092a4ba3099c3e52e2d1b916 (diff) | |
Option to choose CCAP track (part of #1516).v2.13.143
Diffstat (limited to 'src/wx/film_viewer.cc')
| -rw-r--r-- | src/wx/film_viewer.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/film_viewer.cc b/src/wx/film_viewer.cc index b99bea6f7..b728f6b2a 100644 --- a/src/wx/film_viewer.cc +++ b/src/wx/film_viewer.cc @@ -84,7 +84,7 @@ FilmViewer::FilmViewer (wxWindow* p) , _playing (false) , _latency_history_count (0) , _dropped (0) - , _closed_captions_dialog (new ClosedCaptionsDialog(p)) + , _closed_captions_dialog (new ClosedCaptionsDialog(p, this)) , _outline_content (false) , _eyes (EYES_LEFT) , _pad_black (false) @@ -201,7 +201,7 @@ FilmViewer::recreate_butler () _butler->disable_audio (); } - _closed_captions_dialog->set_butler (_butler); + _closed_captions_dialog->set_film_and_butler (_film, _butler); if (was_running) { start (); |
