[Summary] Fixed button press event handler on the control event box where track headers are placed

This commit is contained in:
GZharun 2014-09-19 14:14:56 +03:00
parent 081d801263
commit d67e1a0f1e

View file

@ -3624,9 +3624,10 @@ Editor::edit_controls_button_press (GdkEventButton* ev)
{
if ( (ev->button == 1) && (ev->type == GDK_2BUTTON_PRESS) ) {
ARDOUR_UI::instance()->add_audio_track_instantly ();
return true;
}
return true;
return false;
}