summaryrefslogtreecommitdiff
path: root/src/wx/timing_panel.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-07-14 14:23:50 +0100
committerCarl Hetherington <cth@carlh.net>2015-07-14 14:23:50 +0100
commit23b69b228ed5b34b59e1789de4bff052bc905ae4 (patch)
treef2c4f3bdfd80d1fe3d3b3dc7800e2d2589693680 /src/wx/timing_panel.h
parentf509c806965f4a381eec454e7f55a70fd676f302 (diff)
Express trims using ContentTime so that they do not change
when DCP frame rate is changed (#637).
Diffstat (limited to 'src/wx/timing_panel.h')
-rw-r--r--src/wx/timing_panel.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/timing_panel.h b/src/wx/timing_panel.h
index 100945731..d1f5ea549 100644
--- a/src/wx/timing_panel.h
+++ b/src/wx/timing_panel.h
@@ -48,10 +48,10 @@ private:
Timecode<DCPTime>* _position;
Timecode<DCPTime>* _full_length;
- Timecode<DCPTime>* _trim_start;
+ Timecode<ContentTime>* _trim_start;
wxButton* _trim_start_to_playhead;
wxButton* _trim_end_to_playhead;
- Timecode<DCPTime>* _trim_end;
+ Timecode<ContentTime>* _trim_end;
Timecode<DCPTime>* _play_length;
wxTextCtrl* _video_frame_rate;
wxButton* _set_video_frame_rate;