prevent smart mode from interfering with internal edit mode (note selection, etc)

git-svn-id: svn://localhost/ardour2/branches/3.0@13992 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2013-01-24 21:56:03 +00:00
parent b91bd921a5
commit 1e30104c47

View File

@ -799,6 +799,11 @@ Editor::button_press_handler_1 (ArdourCanvas::Item* item, GdkEvent* event, ItemT
eff = MouseObject;
}
/* there is no Range mode when in internal edit mode */
if (eff == MouseRange && internal_editing()) {
eff = MouseObject;
}
switch (eff) {
case MouseRange:
switch (item_type) {