diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-06-08 20:21:37 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-06-08 20:21:37 +0200 |
| commit | 52105ec362009d8eeadb79be6526e179802cd3f9 (patch) | |
| tree | 4ec0b59f966349966599acd446751e43336f3767 | |
| parent | d80abe28dde8d8579c9ad790a75bd096b8b46ec1 (diff) | |
Only allow adding reels in custom reel mode (#2823).
| -rw-r--r-- | src/wx/dcp_timeline.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wx/dcp_timeline.cc b/src/wx/dcp_timeline.cc index 7b8e93325..93e15f6cc 100644 --- a/src/wx/dcp_timeline.cc +++ b/src/wx/dcp_timeline.cc @@ -218,6 +218,7 @@ DCPTimeline::setup_sensitivity() { _snap->Enable(editable()); _maximum_reel_size->Enable(film()->reel_type() == ReelType::BY_LENGTH); + _add_reel_boundary->Enable(film()->reel_type() == ReelType::CUSTOM); } |
