summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/wx/timeline.cc6
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