summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-05-08 19:21:51 +0100
committerCarl Hetherington <cth@carlh.net>2013-05-08 19:21:51 +0100
commit43e8e186cbce3c04ae4bcb4834fa9562771d3356 (patch)
tree5e7e89c750890c50a84f09df9b7d2d01bcd411cc /src
parent6925163806c96442f624d0d60c696e3da5bc996e (diff)
Fix subtitle control visibility (#139).
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 894e2ae2b..884904e51 100644
--- a/src/wx/film_editor.cc
+++ b/src/wx/film_editor.cc
@@ -1096,7 +1096,7 @@ FilmEditor::setup_subtitle_control_sensitivity ()
{
bool h = false;
if (_generally_sensitive && _film) {
- h = !_film->has_subtitles ();
+ h = _film->has_subtitles ();
}
_with_subtitles->Enable (h);