mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
when drawing range selection rect, use exclusive end semantics
This commit is contained in:
parent
d309ab31e8
commit
1b76e90246
1 changed files with 1 additions and 1 deletions
|
|
@ -895,7 +895,7 @@ TimeAxisView::show_selection (TimeSelection& ts)
|
|||
rect = get_selection_rect ((*i).id);
|
||||
|
||||
x1 = _editor.time_to_pixel (start);
|
||||
x2 = _editor.time_to_pixel (end.decrement());
|
||||
x2 = _editor.time_to_pixel (end);
|
||||
y2 = current_height() - 1;
|
||||
|
||||
if (dynamic_cast<AudioTimeAxisView*>(this)) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue