summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-11-15 14:32:54 +0000
committerCarl Hetherington <carl@carlh.net>2011-11-15 14:32:54 +0000
commit57d2555d3e7857c44daedd1d51f777d0c50b27c4 (patch)
treeb2a2fdf83cae4c5b3bbe9cddab0d66b7679462c8
parenta7fd6e2925746ca08594e5ffcfaf416b08deee7b (diff)
Fix typo in last commit.3.0-beta1
git-svn-id: svn://localhost/ardour2/branches/3.0@10615 d708f5d6-7413-0410-9779-e7cbd77b26cf
-rw-r--r--gtk2_ardour/midi_region_view.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/midi_region_view.cc b/gtk2_ardour/midi_region_view.cc
index 9a6e5a498f..11833656d8 100644
--- a/gtk2_ardour/midi_region_view.cc
+++ b/gtk2_ardour/midi_region_view.cc
@@ -3302,7 +3302,7 @@ MidiRegionView::goto_next_note (bool add_to_selection)
/* use the first one */
- if (!_event.empty() && (channel_mask & (1 << _events.front()->note()->channel ()))) {
+ if (!_events.empty() && (channel_mask & (1 << _events.front()->note()->channel ()))) {
unique_select (_events.front());
}
}