Fix scene not switching with multiple executables

This commit is contained in:
Myned
2020-05-14 18:51:44 -04:00
parent b45b38cf6a
commit 3654f39247

View File

@@ -134,7 +134,9 @@ void SwitcherData::checkExeSwitch(bool& match, OBSWeakSource& scene, OBSWeakSour
scene = s.mScene;
transition = s.mTransition;
match = !s.mInFocus || (s.mInFocus && isInFocus(s.mExe));
break;
if (match)
break;
}
}
}