summaryrefslogtreecommitdiff
path: root/gtk2_ardour/add_route_dialog.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-06-12 12:48:53 +0200
committerRobin Gareus <robin@gareus.org>2017-06-12 17:20:41 +0200
commit8faf07bd6ceec6a445c826efa21081e6a5594fe1 (patch)
treec7192d54551bc3ba62e7595a985f829738b9c87a /gtk2_ardour/add_route_dialog.cc
parentc69049a853235a00b2c6b98f440cc29585d89819 (diff)
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.
Diffstat (limited to 'gtk2_ardour/add_route_dialog.cc')
-rw-r--r--gtk2_ardour/add_route_dialog.cc2
1 files changed, 1 insertions, 1 deletions
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);