diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-11-25 21:01:18 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-11-25 21:01:18 +0000 |
| commit | 51468148d3dde7cb4be3dae6442e5ef6bcafda2b (patch) | |
| tree | ba084b911fcf88d3faae888d8151b8efacec3bf3 /src/wx/content_panel.cc | |
| parent | 8a4c2dbb6e9e15af98c0edb494d7ac1f74412360 (diff) | |
Enable mysteriously disabled multi-selected-content edit of timing and
fix a couple of problems with it (#1010).
Diffstat (limited to 'src/wx/content_panel.cc')
| -rw-r--r-- | src/wx/content_panel.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/content_panel.cc b/src/wx/content_panel.cc index 1b74f4c36..b67bdb4eb 100644 --- a/src/wx/content_panel.cc +++ b/src/wx/content_panel.cc @@ -397,7 +397,7 @@ ContentPanel::setup_sensitivity () _video_panel->Enable (video_selection.size() > 0 && _generally_sensitive); _audio_panel->Enable (audio_selection.size() > 0 && _generally_sensitive); _subtitle_panel->Enable (selection.size() == 1 && selection.front()->subtitle && _generally_sensitive); - _timing_panel->Enable (selection.size() == 1 && _generally_sensitive); + _timing_panel->Enable (_generally_sensitive); } void |
