summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-12-02 00:56:05 +0000
committerCarl Hetherington <cth@carlh.net>2013-12-02 00:56:05 +0000
commit1192628904eb5f3c4d9f77b5adc96c6a9906b470 (patch)
tree0a9914df4be8c21800206eed89b31b0fb0a7c0b5
parent6188b3292ce51f98d0a42514633351c6d1d4edaa (diff)
Fix erroneous disabling of timing panel with audio-only sources.
-rw-r--r--ChangeLog5
-rw-r--r--src/wx/timing_panel.cc2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index fdb9f77fb..c579b6804 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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 */