13
0

T: hide MIDIClock master (Trax has no music tempo)

This commit is contained in:
Robin Gareus 2024-05-30 18:05:07 +02:00
parent ab09b7fbc1
commit 3d82411ac3
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
2 changed files with 5 additions and 0 deletions

View File

@ -351,6 +351,9 @@ TransportMaster::factory (XMLNode const & node)
if (type == Engine) {
return std::shared_ptr<TransportMaster>();
}
if (type == MIDIClock) {
return std::shared_ptr<TransportMaster>();
}
#endif
if (!node.get_property (X_("name"), name)) {

View File

@ -86,7 +86,9 @@ TransportMasterManager::set_default_configuration ()
#endif
add (MTC, X_("MTC"), false);
add (LTC, X_("LTC"), false);
#ifndef LIVETRAX
add (MIDIClock, X_("MIDI Clock"), false);
#endif
} catch (...) {
return -1;