From d5160b6e8c4d396872435537b9bc9829412d9c74 Mon Sep 17 00:00:00 2001 From: Ben Loftis Date: Sun, 25 Dec 2022 09:50:59 -0600 Subject: [PATCH] export_dialog: use more sensible padding around the preset widgets --- gtk2_ardour/export_dialog.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/export_dialog.cc b/gtk2_ardour/export_dialog.cc index c2a31b11d3..589c92b954 100644 --- a/gtk2_ardour/export_dialog.cc +++ b/gtk2_ardour/export_dialog.cc @@ -181,7 +181,7 @@ ExportDialog::init_gui () { Gtk::Alignment * preset_align = Gtk::manage (new Gtk::Alignment()); preset_align->add (*preset_selector); - preset_align->set_padding (0, 12, 0, 0); + preset_align->set_padding (6, 8, 6, 6); Gtk::VBox * file_format_selector = Gtk::manage (new Gtk::VBox()); file_format_selector->set_homogeneous (false);