split EngineDialog into a widget and a dialog

This commit is contained in:
Paul Davis 2024-04-18 16:07:41 -06:00
parent 86c730095c
commit 9a4bc841dd
9 changed files with 165 additions and 95 deletions

View file

@ -191,3 +191,9 @@ ArdourDialog::set_ui_sensitive (bool yn)
{
_sensitive = yn;
}
void
ArdourDialog::add_widget_action (Gtk::Widget& w)
{
get_action_area()->add (w);
}