diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-10-25 00:54:54 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-10-25 00:54:54 +0100 |
| commit | 696b6cf0eb9e8ae651bf58b5a3cff80291562450 (patch) | |
| tree | d3bbb34c1bcd8fc9c6b9565c9332e28f6e4d5cf6 /src | |
| parent | c6e4389c8fcf7e60f71292bf62c8ff5c23ded662 (diff) | |
A few things missed when setting sensitivity.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/film_editor.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/wx/film_editor.cc b/src/wx/film_editor.cc index 34223ce05..5ff3b3302 100644 --- a/src/wx/film_editor.cc +++ b/src/wx/film_editor.cc @@ -646,7 +646,6 @@ FilmEditor::set_things_sensitive (bool s) _name->Enable (s); _use_dci_name->Enable (s); _edit_dci_button->Enable (s); - _frames_per_second->Enable (s); _format->Enable (s); _content->Enable (s); _left_crop->Enable (s); @@ -655,6 +654,7 @@ FilmEditor::set_things_sensitive (bool s) _bottom_crop->Enable (s); _filters_button->Enable (s); _scaler->Enable (s); + _audio_stream->Enable (s); _dcp_content_type->Enable (s); _dcp_range->Enable (s); _change_dcp_range_button->Enable (s); @@ -662,10 +662,13 @@ FilmEditor::set_things_sensitive (bool s) _audio_gain->Enable (s); _audio_gain_calculate_button->Enable (s); _audio_delay->Enable (s); + _subtitle_stream->Enable (s); _still_duration->Enable (s); _with_subtitles->Enable (s); _subtitle_offset->Enable (s); _subtitle_scale->Enable (s); + _frames_per_second->Enable (s); + _original_size->Enable (s); } /** Called when the `Edit filters' button has been clicked */ |
