mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 08:36:32 +01:00
fix initialization of audio-engine dialog
This commit is contained in:
parent
ca1064e337
commit
9268de566c
1 changed files with 5 additions and 1 deletions
|
|
@ -275,7 +275,11 @@ EngineControl::EngineControl ()
|
|||
ARDOUR::AudioEngine::instance()->Stopped.connect (stopped_connection, MISSING_INVALIDATOR, boost::bind (&EngineControl::engine_stopped, this), gui_context());
|
||||
ARDOUR::AudioEngine::instance()->Halted.connect (stopped_connection, MISSING_INVALIDATOR, boost::bind (&EngineControl::engine_stopped, this), gui_context());
|
||||
|
||||
backend_changed ();
|
||||
{
|
||||
PBD::Unwinder<uint32_t> protect_ignore_changes (ignore_changes, ignore_changes + 1);
|
||||
backend_changed ();
|
||||
}
|
||||
maybe_display_saved_state();
|
||||
|
||||
/* Connect to signals */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue