From: Carl Hetherington Date: Wed, 8 May 2013 18:21:51 +0000 (+0100) Subject: Fix subtitle control visibility (#139). X-Git-Tag: v2.0.48~1337^2~388 X-Git-Url: https://git.carlh.net/gitweb/?a=commitdiff_plain;h=43e8e186cbce3c04ae4bcb4834fa9562771d3356;p=dcpomatic.git Fix subtitle control visibility (#139). --- 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);