mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-11 09:06:33 +01:00
TMM: do not allow changing transport master while slaved (libardour edition)
This commit is contained in:
parent
58e5c0cfea
commit
c57df5a7e5
1 changed files with 6 additions and 1 deletions
|
|
@ -908,7 +908,12 @@ Session::process_event (SessionEvent* ev)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case SessionEvent::SetTransportMaster:
|
case SessionEvent::SetTransportMaster:
|
||||||
|
/* do not allow changing the transport master if we're already
|
||||||
|
using one.
|
||||||
|
*/
|
||||||
|
if (!config.get_external_sync()) {
|
||||||
TransportMasterManager::instance().set_current (ev->transport_master);
|
TransportMasterManager::instance().set_current (ev->transport_master);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case SessionEvent::PunchIn:
|
case SessionEvent::PunchIn:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue