X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Ftools%2Fdcpomatic.cc;fp=src%2Ftools%2Fdcpomatic.cc;h=048d5fedd15394befa2fe851f3f9a309685756e1;hp=3fb291fc427d3d0647e9f9b13fd940cd604b6d9d;hb=daed95a3c8ac52f301bf331da4951b7e98cb50b6;hpb=629359a2c3eb1ff37d9bc53e260b00700267e8db diff --git a/src/tools/dcpomatic.cc b/src/tools/dcpomatic.cc index 3fb291fc4..048d5fedd 100644 --- a/src/tools/dcpomatic.cc +++ b/src/tools/dcpomatic.cc @@ -1546,7 +1546,7 @@ private: } signal_manager = new wxSignalManager (this); - Bind (wxEVT_IDLE, boost::bind (&App::idle, this)); + Bind (wxEVT_IDLE, boost::bind (&App::idle, this, _1)); Bind (wxEVT_TIMER, boost::bind (&App::check, this)); _timer.reset (new wxTimer (this)); @@ -1635,9 +1635,10 @@ private: report_exception (); } - void idle () + void idle (wxIdleEvent& ev) { signal_manager->ui_idle (); + ev.Skip (); } void check ()