diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-01-02 18:45:02 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-01-02 18:45:02 +0000 |
| commit | 34f6688dad9f6916f2d6ce1accba90e88e6efff4 (patch) | |
| tree | e8226fd90a2971deac5d5ef2568b9b6505c693b0 | |
| parent | 9458457504af5548bc51b3c29e65dbe92fd0513d (diff) | |
Go back to time 0 when loading a new DCP into the player (#1152).
| -rw-r--r-- | ChangeLog | 2 | ||||
| -rw-r--r-- | src/tools/dcpomatic_player.cc | 1 |
2 files changed, 3 insertions, 0 deletions
@@ -1,5 +1,7 @@ 2018-01-02 Carl Hetherington <cth@carlh.net> + * Go back to zero when loading a new DCP into the player (#1152). + * Fix generated ISDCF name with full-frame content (#1118). * Fix downloading of certificates on Windows (#1124). diff --git a/src/tools/dcpomatic_player.cc b/src/tools/dcpomatic_player.cc index 850d1ed8a..1913a4b15 100644 --- a/src/tools/dcpomatic_player.cc +++ b/src/tools/dcpomatic_player.cc @@ -162,6 +162,7 @@ public: } _viewer->set_film (_film); + _viewer->set_position (DCPTime ()); _info->triggered_update (); } |
