From 143bca4a6dce4bc2a40cbe5c7215bf52ad005346 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 12 Nov 2025 16:02:12 -0700 Subject: [PATCH] SessionDialog: move NEW button to the bottom This creates a default focus chain that allows easy access to all 3 buttons before traversing other focusable widgets in the dialog --- gtk2_ardour/session_dialog.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/session_dialog.cc b/gtk2_ardour/session_dialog.cc index c420690866..19ab94976e 100644 --- a/gtk2_ardour/session_dialog.cc +++ b/gtk2_ardour/session_dialog.cc @@ -166,9 +166,9 @@ SessionDialog::SessionDialog (DialogTab initial_tab, const std::string& session_ } } - _open_table.attach (new_button, 0,1, row, row + 1, FILL, FILL); ++row; _open_table.attach (recent_button, 0,1, row, row + 1, FILL, FILL); ++row; _open_table.attach (existing_button, 0,1, row, row + 1, FILL, FILL); ++row; + _open_table.attach (new_button, 0,1, row, row + 1, FILL, FILL); ++row; ++row; Label *vspacer = manage (new Label());