diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-12-03 15:32:41 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-12-03 15:32:41 +0000 |
| commit | 70ee6cc5cef66a4aed252dbfa2390cc9f0c8c286 (patch) | |
| tree | aca652adfe70c9bd10e3d647b10e12998fbd4148 /src/wx/timing_panel.h | |
| parent | bc4ce63541a6617725be91405e279c1292e66721 (diff) | |
Add play-length control to timing panel (#261).
Diffstat (limited to 'src/wx/timing_panel.h')
| -rw-r--r-- | src/wx/timing_panel.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/wx/timing_panel.h b/src/wx/timing_panel.h index 8c519bcbe..ab859a1be 100644 --- a/src/wx/timing_panel.h +++ b/src/wx/timing_panel.h @@ -31,12 +31,14 @@ public: private: void position_changed (); - void length_changed (); + void full_length_changed (); void trim_start_changed (); void trim_end_changed (); + void play_length_changed (); Timecode* _position; - Timecode* _length; + Timecode* _full_length; Timecode* _trim_start; Timecode* _trim_end; + Timecode* _play_length; }; |
