diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-12-02 00:56:05 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-12-02 00:56:05 +0000 |
| commit | 1192628904eb5f3c4d9f77b5adc96c6a9906b470 (patch) | |
| tree | 0a9914df4be8c21800206eed89b31b0fb0a7c0b5 | |
| parent | 6188b3292ce51f98d0a42514633351c6d1d4edaa (diff) | |
Fix erroneous disabling of timing panel with audio-only sources.
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | src/wx/timing_panel.cc | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2013-12-02 Carl Hetherington <cth@carlh.net> + + * Fix erroneous disabling of timing panel with + audio-only sources. + 2013-11-30 Carl Hetherington <cth@carlh.net> * Version 1.39 released. diff --git a/src/wx/timing_panel.cc b/src/wx/timing_panel.cc index b5a0c43d4..0f9448b67 100644 --- a/src/wx/timing_panel.cc +++ b/src/wx/timing_panel.cc @@ -135,7 +135,7 @@ TimingPanel::trim_end_changed () void TimingPanel::content_selection_changed () { - VideoContentList sel = _editor->selected_video_content (); + ContentList sel = _editor->selected_content (); bool const single = sel.size() == 1; /* Things that are only allowed with single selections */ |
