summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-01-15 16:34:18 +0000
committerCarl Hetherington <cth@carlh.net>2014-01-15 16:34:18 +0000
commitd0bca7d33b8101cd87f78d5a76b2512dea3988f8 (patch)
treedb353afc834fe13fb67d7eb5c62364ed22adaad7 /src
parent86214f4619476b1a4951e15f002a93743b5f7a1e (diff)
Fix subtitle panel enable.
Diffstat (limited to 'src')
-rw-r--r--src/wx/film_editor.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/film_editor.cc b/src/wx/film_editor.cc
index 677614fb1..8ccf9b277 100644
--- a/src/wx/film_editor.cc
+++ b/src/wx/film_editor.cc
@@ -841,7 +841,7 @@ FilmEditor::setup_content_sensitivity ()
_video_panel->Enable (video_selection.size() > 0 && _generally_sensitive);
_audio_panel->Enable (audio_selection.size() > 0 && _generally_sensitive);
- _subtitle_panel->Enable (selection.size() == 1 && dynamic_pointer_cast<FFmpegContent> (selection.front()) && _generally_sensitive);
+ _subtitle_panel->Enable (selection.size() == 1 && dynamic_pointer_cast<SubtitleContent> (selection.front()) && _generally_sensitive);
_timing_panel->Enable (selection.size() == 1 && _generally_sensitive);
}