diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-07-19 00:31:41 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-07-19 00:31:41 +0100 |
| commit | d6ab5a6677f1cc4ecadb78b4bbe2d42749d3728e (patch) | |
| tree | 6cbba2ac70c469778b6dc799f7d1c8c50cb5bf1b /src | |
| parent | 642a967bcec325ac01f01a22c63c24bf670e2ee3 (diff) | |
Mark video/stills differently on the timeline.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/timeline.cc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/wx/timeline.cc b/src/wx/timeline.cc index 6eba7f793..3747a3dac 100644 --- a/src/wx/timeline.cc +++ b/src/wx/timeline.cc @@ -219,7 +219,11 @@ private: wxString type () const { - return _("video"); + if (dynamic_pointer_cast<FFmpegContent> (content ())) { + return _("video"); + } else { + return _("still"); + } } wxColour colour () const |
