mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
Mark session dirty when changing external connections
This commit is contained in:
parent
94a4f6b350
commit
b2a862971b
1 changed files with 4 additions and 0 deletions
|
|
@ -1004,6 +1004,10 @@ PortManager::connect_callback (const string& a, const string& b, bool conn)
|
|||
}
|
||||
}
|
||||
|
||||
if (!port_a && !port_b && Config->get_restore_hardware_connections () && !AudioEngine::instance ()->is_jack ()) {
|
||||
AudioEngine::instance ()->session ()->set_dirty ();
|
||||
}
|
||||
|
||||
PortConnectedOrDisconnected (
|
||||
port_a, a,
|
||||
port_b, b,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue