mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-05 21:25:46 +01:00
Merged with trunk R1729.
git-svn-id: svn://localhost/ardour2/branches/midi@1730 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
bed7bacdd1
commit
a9f5e379d2
11 changed files with 377 additions and 545 deletions
|
|
@ -4524,7 +4524,7 @@ Editor::end_range_markerbar_op (ArdourCanvas::Item* item, GdkEvent* event)
|
|||
switch (mouse_mode) {
|
||||
case MouseObject:
|
||||
/* find the two markers on either side and then make the selection from it */
|
||||
select_all_within (start, end, 0.0f, FLT_MAX, Selection::Set);
|
||||
select_all_within (start, end, 0.0f, FLT_MAX, track_views, Selection::Set);
|
||||
break;
|
||||
|
||||
case MouseRange:
|
||||
|
|
@ -4727,9 +4727,9 @@ Editor::end_rubberband_select (ArdourCanvas::Item* item, GdkEvent* event)
|
|||
begin_reversible_command (_("rubberband selection"));
|
||||
|
||||
if (drag_info.grab_frame < drag_info.last_pointer_frame) {
|
||||
commit = select_all_within (drag_info.grab_frame, drag_info.last_pointer_frame, y1, y2, op);
|
||||
commit = select_all_within (drag_info.grab_frame, drag_info.last_pointer_frame, y1, y2, track_views, op);
|
||||
} else {
|
||||
commit = select_all_within (drag_info.last_pointer_frame, drag_info.grab_frame, y1, y2, op);
|
||||
commit = select_all_within (drag_info.last_pointer_frame, drag_info.grab_frame, y1, y2, track_views, op);
|
||||
}
|
||||
|
||||
if (commit) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue