From 8faf07bd6ceec6a445c826efa21081e6a5594fe1 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Mon, 12 Jun 2017 12:48:53 +0200 Subject: [PATCH] Consistent "cancel/close" button position on the left. "Add and Close" is an odd one out and this button should really be removed for consistency. Still it allows for a 2-click or 2-keyboard-shortcut very common action. --- gtk2_ardour/add_route_dialog.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/add_route_dialog.cc b/gtk2_ardour/add_route_dialog.cc index c8ad0a7d09..7381485cde 100644 --- a/gtk2_ardour/add_route_dialog.cc +++ b/gtk2_ardour/add_route_dialog.cc @@ -194,8 +194,8 @@ AddRouteDialog::AddRouteDialog () this dialog is shown, via ::on_show() */ - add_button (_("Add"), Add); add_button (_("Add and Close"), AddAndClose); + add_button (_("Add"), Add); set_response_sensitive (AddAndClose, true); set_default_response (AddAndClose);