when track selection changes, cancel any and all name editing
[ardour.git] / gtk2_ardour / editor_mouse.cc
index 8d800ae205740cb6bb973fce180b938d5a92684a..6e11b16862093de176f647e994e31740c93f80ad 100644 (file)
@@ -1068,7 +1068,6 @@ Editor::button_press_handler_1 (ArdourCanvas::Item* item, GdkEvent* event, ItemT
                        AudioRegionView* arv = dynamic_cast<AudioRegionView *> (clicked_regionview);
                        if (arv) {
                                _drags->set (new AutomationRangeDrag (this, arv, selection->time), event, _cursors->up_down);
-                               _drags->start_grab (event);
                        } else {
                                double const y = event->button.y;
                                pair<TimeAxisView*, int> tvp = trackview_by_y_position (y);
@@ -1077,7 +1076,6 @@ Editor::button_press_handler_1 (ArdourCanvas::Item* item, GdkEvent* event, ItemT
                                        if ( atv) {
                                                /* smart "join" mode: drag automation */
                                                _drags->set (new AutomationRangeDrag (this, atv, selection->time), event, _cursors->up_down);
-                                               _drags->start_grab (event);
                                        }
                                }
                        }