diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-09-21 10:55:30 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-10-12 11:05:26 +0100 |
| commit | 6bc2f68acc12f254d298a41dc9656306c3ae8c4f (patch) | |
| tree | b54565bc4a52f368343207856e8968d4711a0466 /src | |
| parent | f08407bb620638a402ec8f52ba6c3a54383caf86 (diff) | |
Fix sensitivity of reel length entry.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/dcp_panel.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/dcp_panel.cc b/src/wx/dcp_panel.cc index 463b11c16..b0cbd8941 100644 --- a/src/wx/dcp_panel.cc +++ b/src/wx/dcp_panel.cc @@ -511,7 +511,7 @@ DCPPanel::set_general_sensitivity (bool s) _key->Enable (s && _film && _film->encrypted ()); _edit_key->Enable (s && _film && _film->encrypted ()); _reel_type->Enable (s); - _reel_length->Enable (s); + _reel_length->Enable (s && _film && _film->reel_type() == REELTYPE_BY_LENGTH); _frame_rate_choice->Enable (s); _frame_rate_spin->Enable (s); _audio_channels->Enable (s); |
