summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-08-22 11:37:20 +0100
committerCarl Hetherington <cth@carlh.net>2018-08-22 11:37:20 +0100
commit927d4d2f5bd1d77024369fc1f7de32ca085a3ee4 (patch)
tree017dd2ca126e69c3e567692acad133b9ba3a50cf
parente4bc471844bbf716efa4514fb258b4c912ff29d4 (diff)
Disable the whole interface during audio analysis (#1278).
-rw-r--r--ChangeLog4
-rw-r--r--src/wx/film_editor.cc2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index d824fda9f..758ce484b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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);
}