diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-10-26 02:11:50 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-10-26 02:11:50 +0200 |
| commit | 256bb5b0d41992d5ed10c5a72954eae553de9719 (patch) | |
| tree | e840abfa3904f1a8273a8ca5ab9ba8aa1071624b /src/tools | |
| parent | a645b0cff750bcd8c470055c227457d7d0d3e077 (diff) | |
Use new signalling code for Hints::Hint.
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/dcpomatic.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/tools/dcpomatic.cc b/src/tools/dcpomatic.cc index e0c69f5a4..7172bcda4 100644 --- a/src/tools/dcpomatic.cc +++ b/src/tools/dcpomatic.cc @@ -55,6 +55,7 @@ #include "wx/templates_dialog.h" #include "wx/update_dialog.h" #include "wx/video_waveform_dialog.h" +#include "wx/wx_signal.h" #include "wx/wx_signal_manager.h" #include "wx/wx_util.h" #include "wx/wx_variant.h" @@ -1725,6 +1726,7 @@ private: _frame->Show (); signal_manager = new wxSignalManager (this); + thread_waker = new wxThreadWaker(this); Bind (wxEVT_IDLE, boost::bind (&App::idle, this, _1)); if (!_film_to_load.empty() && dcp::filesystem::is_directory(_film_to_load)) { @@ -1867,6 +1869,7 @@ private: void idle (wxIdleEvent& ev) { signal_manager->ui_idle (); + pending::process(); ev.Skip (); } |
