X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Fwx%2Ffilm_viewer.cc;h=dcbfedc8194101fb2597dbf90c5adc7317a81edc;hp=7437612af9f9fde9094737ee545a7f10c979190e;hb=b3b371294ed5e6cc18ef64ba1b06ca76726b903a;hpb=7f5d317d3ba2bdb1838e942c436ad9f5de321bb4 diff --git a/src/wx/film_viewer.cc b/src/wx/film_viewer.cc index 7437612af..dcbfedc81 100644 --- a/src/wx/film_viewer.cc +++ b/src/wx/film_viewer.cc @@ -88,12 +88,10 @@ FilmViewer::FilmViewer (wxWindow* p) , _latency_history_count (0) , _closed_captions_dialog (new ClosedCaptionsDialog(p, this)) , _outline_content (false) - , _eyes (EYES_LEFT) , _pad_black (false) #ifdef DCPOMATIC_VARIANT_SWAROOP , _background_image (false) #endif - , _gets (0) , _idle_get (false) { switch (Config::instance()->video_view_type()) { @@ -234,7 +232,7 @@ FilmViewer::set_outline_content (bool o) void FilmViewer::set_eyes (Eyes e) { - _eyes = e; + _video_view->set_eyes (e); slow_refresh (); } @@ -651,3 +649,10 @@ FilmViewer::dropped () const return _video_view->dropped (); } +int +FilmViewer::gets () const +{ + return _video_view->gets (); +} + +