fix behaviour of AddRouteDialog "Add" button

This commit is contained in:
Paul Davis 2017-07-17 11:51:58 -04:00
parent 4f4ed8e194
commit d397e1f85c

View File

@ -213,7 +213,10 @@ void
AddRouteDialog::on_response (int r)
{
name_edited_by_user = false;
ArdourDialog::on_response (r);
/* Don't call ArdourDialog::on_response() because that will
automatically hide the dialog.
*/
Gtk::Dialog::on_response (r);
}
void