Fix 6afcb350c5, internal backends don't report externally_connected()

This commit is contained in:
Robin Gareus
2020-05-08 03:45:56 +02:00
parent cc5e9631eb
commit 3f6764f276

View File

@@ -768,7 +768,7 @@ Track::set_align_choice_from_io ()
* When not using JACK, all external ports are physical ports
* so this is a NO-OP for other backends.
*/
if (p->externally_connected ()) {
if (p->externally_connected () || p->physically_connected ()) {
have_physical = true;
break;
}