mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-22 06:36:29 +01:00
Disable region drags in internal edit mode. Fixes #3456.
git-svn-id: svn://localhost/ardour2/branches/3.0@7800 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
157895dc3b
commit
74d72b83a7
2 changed files with 9 additions and 0 deletions
|
|
@ -768,6 +768,11 @@ Editor::button_press_handler_1 (ArdourCanvas::Item* item, GdkEvent* event, ItemT
|
|||
*/
|
||||
break;
|
||||
}
|
||||
|
||||
if (internal_editing ()) {
|
||||
/* no region drags in internal edit mode */
|
||||
break;
|
||||
}
|
||||
|
||||
/* click on a normal region view */
|
||||
if (Keyboard::modifier_state_contains (event->button.state, Keyboard::CopyModifier)) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue