summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_selection.cc
diff options
context:
space:
mode:
authorBen Loftis <ben@harrisonconsoles.com>2015-04-21 10:16:00 -0500
committerBen Loftis <ben@harrisonconsoles.com>2015-04-21 10:22:28 -0500
commiteafb66d00121986354b01c8367404d4c91038aac (patch)
tree21b7b877f19da8219afb375f68bb40c96edc9e64 /gtk2_ardour/editor_selection.cc
parente2afdb21c348e89c39cd2d5f46e06d7f2726a43c (diff)
update some calls to use new get_preferred_edit_position; needs testing
Diffstat (limited to 'gtk2_ardour/editor_selection.cc')
-rw-r--r--gtk2_ardour/editor_selection.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/editor_selection.cc b/gtk2_ardour/editor_selection.cc
index ca48cd6dd1..0ea6e6f9ca 100644
--- a/gtk2_ardour/editor_selection.cc
+++ b/gtk2_ardour/editor_selection.cc
@@ -1751,10 +1751,10 @@ Editor::select_all_selectables_using_edit (bool after)
list<Selectable *> touched;
if (after) {
- start = get_preferred_edit_position(false, true);
+ start = get_preferred_edit_position(EDIT_IGNORE_NONE, true);
end = _session->current_end_frame();
} else {
- if ((end = get_preferred_edit_position(false, true)) > 1) {
+ if ((end = get_preferred_edit_position(EDIT_IGNORE_NONE, true)) > 1) {
start = 0;
end -= 1;
} else {