mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-22 21:27:22 +01:00
Modified patch from drmoore to fix mantis 2808 (drag rectangle left behind after loop or punch range drag)
git-svn-id: svn://localhost/ardour2/branches/3.0@5487 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
022513756a
commit
ce3ca76f96
1 changed files with 1 additions and 3 deletions
|
|
@ -3181,6 +3181,7 @@ RangeMarkerBarDrag::finished (GdkEvent* event, bool movement_occurred)
|
|||
|
||||
if (movement_occurred) {
|
||||
motion (event, false);
|
||||
_drag_rect->hide();
|
||||
|
||||
switch (_operation) {
|
||||
case CreateRangeMarker:
|
||||
|
|
@ -3202,15 +3203,12 @@ RangeMarkerBarDrag::finished (GdkEvent* event, bool movement_occurred)
|
|||
XMLNode &after = _editor->session->locations()->get_state();
|
||||
_editor->session->add_command(new MementoCommand<Locations>(*(_editor->session->locations()), &before, &after));
|
||||
_editor->commit_reversible_command ();
|
||||
|
||||
_drag_rect->hide();
|
||||
break;
|
||||
}
|
||||
|
||||
case CreateTransportMarker:
|
||||
// popup menu to pick loop or punch
|
||||
_editor->new_transport_marker_context_menu (&event->button, _item);
|
||||
|
||||
break;
|
||||
}
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue