diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-06-15 19:18:03 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-06-15 19:18:03 +0100 |
| commit | 9de5bc65c8c8753d23cb775e6d26369aa2b8198d (patch) | |
| tree | 392165ec59312894aea562ecaba47019327c4c00 /src | |
| parent | a183c1776cfd020a37d028ebb0f641352f49697b (diff) | |
Fix some initial sensitivity.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/film_editor.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/wx/film_editor.cc b/src/wx/film_editor.cc index aab2a6147..8aa4165c7 100644 --- a/src/wx/film_editor.cc +++ b/src/wx/film_editor.cc @@ -912,6 +912,9 @@ FilmEditor::set_things_sensitive (bool s) _audio_gain_calculate_button->Enable (s); _show_audio->Enable (s); _audio_delay->Enable (s); + _container->Enable (s); + _loop_content->Enable (s); + _loop_count->Enable (s); setup_subtitle_control_sensitivity (); setup_show_audio_sensitivity (); @@ -1223,6 +1226,7 @@ FilmEditor::setup_content_sensitivity () _video_panel->Enable (selection && dynamic_pointer_cast<VideoContent> (selection) && _generally_sensitive); _audio_panel->Enable (selection && dynamic_pointer_cast<AudioContent> (selection) && _generally_sensitive); _subtitle_panel->Enable (selection && dynamic_pointer_cast<FFmpegContent> (selection) && _generally_sensitive); + _timing_panel->Enable (selection && _generally_sensitive); } shared_ptr<Content> |
