diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-12-23 00:07:25 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-12-23 00:07:25 +0100 |
| commit | d2b7059dae5a440f0a44f2ad8e7b1f0e834a7a9e (patch) | |
| tree | 4c9c18102e6daa020429a9c70b99f8a9a2e9554d /src/tools | |
| parent | 79a262837eb94facf447c6dd77fb0ff9db658d8a (diff) | |
Display markers in the player (#2793).
The space above the position slider was already reserved, but nothing
would be shown there.
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/dcpomatic_player.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/tools/dcpomatic_player.cc b/src/tools/dcpomatic_player.cc index 037fd3d72..3b121b677 100644 --- a/src/tools/dcpomatic_player.cc +++ b/src/tools/dcpomatic_player.cc @@ -42,6 +42,7 @@ #include "lib/audio_content.h" #include "lib/config.h" #include "lib/constants.h" +#include "lib/copy_dcp_details_to_film.h" #include "lib/cross.h" #include "lib/dcp_content.h" #include "lib/dcp_examiner.h" @@ -500,6 +501,8 @@ public: for (auto i: _film->content()) { auto dcp = dynamic_pointer_cast<DCPContent>(i); + copy_dcp_markers_to_film(dcp, _film); + for (auto j: i->text) { j->set_use(true); } |
