[Summary] Removed possibility to drop selection when clicked under the list of tracks

This commit is contained in:
GZharun 2014-09-09 12:47:04 +03:00
parent ccc2f07fb3
commit b57a35c934

View file

@ -3584,7 +3584,7 @@ bool
Editor::edit_controls_button_press (GdkEventButton* ev)
{
if ( (ev->button == 1) && (ev->type == GDK_2BUTTON_PRESS) ) {
ARDOUR_UI::instance()->add_audio_track_instantly ();
ARDOUR_UI::instance()->add_audio_track_instantly ();
}
return true;
@ -3594,11 +3594,7 @@ Editor::edit_controls_button_press (GdkEventButton* ev)
bool
Editor::edit_controls_button_release (GdkEventButton* ev)
{
if (ev->button == 1) {
selection->clear_tracks ();
}
return true;
return false;
}
bool