Add horizontal rulers to Audio Setup

This commit is contained in:
Ben Loftis 2025-01-09 12:16:50 -06:00 committed by Robin Gareus
parent a7290ee661
commit 5c6ebaea72
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04

View file

@ -582,6 +582,9 @@ EngineControl::build_full_control_notebook ()
settings_table.attach (update_devices_button, 3, 4, btn, btn + ht, xopt, xopt);
}
settings_table.attach (*manage (new ArdourHSpacer(1.0)), 0, 4, row, row + 1, xopt, SHRINK, 4, 12);
row++;
if (backend->requires_driver_selection ()) {
settings_table.attach (lbl_driver, 0, 1, row, row + 1, xopt, SHRINK);
settings_table.attach (driver_combo, 1, 2, row, row + 1, xopt, SHRINK);
@ -630,6 +633,9 @@ EngineControl::build_full_control_notebook ()
settings_table.attach (control_app_button, 3, 4, row - ctrl_btn_span, row + 1, xopt, xopt);
++row;
settings_table.attach (*manage (new ArdourHSpacer(1.0)), 0, 4, row, row + 1, xopt, SHRINK, 4, 12);
++row;
/* Monitor settings */
settings_table.attach (monitor_expander, 0, 4, row, row + 1, xopt, SHRINK);
++row;