diff options
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | src/wx/film_editor.cc | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2018-08-22 Carl Hetherington <cth@carlh.net> + + * Disable the whole interface during audio analysis (#1278). + 2018-08-20 Carl Hetherington <cth@carlh.net> * Updated ru_RU and uk_UA translations from Igor Voytovich. diff --git a/src/wx/film_editor.cc b/src/wx/film_editor.cc index cbdbe0f36..1e06bf4a9 100644 --- a/src/wx/film_editor.cc +++ b/src/wx/film_editor.cc @@ -150,5 +150,5 @@ FilmEditor::set_general_sensitivity (bool s) void FilmEditor::active_jobs_changed (optional<string> j) { - set_general_sensitivity (!j || *j == "analyse_audio"); + set_general_sensitivity (!j); } |
