Fix subtitle control visibility (#139).
authorCarl Hetherington <cth@carlh.net>
Wed, 8 May 2013 18:21:51 +0000 (19:21 +0100)
committerCarl Hetherington <cth@carlh.net>
Wed, 8 May 2013 18:21:51 +0000 (19:21 +0100)
src/wx/film_editor.cc

index 894e2ae2bb4d3048c97b31552a829c4783fe77c9..884904e515de36fc49109636cf6af3a9f0ead5f0 100644 (file)
@@ -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);