diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-02-07 20:14:19 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-02-07 20:14:19 +0000 |
| commit | 8bfe295dcc4e1753ee1c89310108bc6bc034cd61 (patch) | |
| tree | 289ccc6ecca26e97248a79a966921edc74b5e08a /src/wx | |
| parent | 42a6035c187305bd4c541bb1ab87b242b58beb7e (diff) | |
Fix ignore/referencing logic.
Diffstat (limited to 'src/wx')
| -rw-r--r-- | src/wx/subtitle_view.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/subtitle_view.cc b/src/wx/subtitle_view.cc index bb336d16b..bf8391371 100644 --- a/src/wx/subtitle_view.cc +++ b/src/wx/subtitle_view.cc @@ -70,10 +70,10 @@ SubtitleView::SubtitleView (wxWindow* parent, shared_ptr<Film> film, shared_ptr< } if (decoder->video) { - decoder->video->set_ignore (); + decoder->video->set_ignore (true); } if (decoder->audio) { - decoder->audio->set_ignore (); + decoder->audio->set_ignore (true); } _subs = 0; |
