diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-11-05 23:51:20 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-01-08 21:56:47 +0100 |
| commit | 694a9f48880efd428c8137e975de3581ad0a75a9 (patch) | |
| tree | 577296e45dbfd2e0c93e2d55ab82d4909a9a6ae5 /src/wx/controls.h | |
| parent | 15e82df97cc99b94a7028313dff4eba213ecd84d (diff) | |
Remove PositionChanged in favour of consumers having their own GUI-thread timers.
Diffstat (limited to 'src/wx/controls.h')
| -rw-r--r-- | src/wx/controls.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/wx/controls.h b/src/wx/controls.h index dfa11e6d7..014464456 100644 --- a/src/wx/controls.h +++ b/src/wx/controls.h @@ -87,7 +87,7 @@ private: void image_changed (boost::weak_ptr<PlayerVideo>); void outline_content_changed (); void eye_changed (); - void position_changed (); + void update_position (); void film_change (ChangeType, Film::Property); typedef std::pair<boost::shared_ptr<dcp::CPL>, boost::filesystem::path> CPL; @@ -105,6 +105,8 @@ private: ClosedCaptionsDialog* _closed_captions_dialog; + wxTimer _timer; + boost::signals2::scoped_connection _film_change_connection; boost::signals2::scoped_connection _config_changed_connection; }; |
