From daed95a3c8ac52f301bf331da4951b7e98cb50b6 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 22 May 2019 22:41:35 +0000 Subject: [PATCH] Try to make splash screen disappear sooner by Skip()ing the idle event. --- src/tools/dcpomatic.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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 () -- 2.30.2