From 3654f392475674addf4d1e61faa663dc5225998f Mon Sep 17 00:00:00 2001 From: Myned Date: Thu, 14 May 2020 18:51:44 -0400 Subject: [PATCH] Fix scene not switching with multiple executables --- src/executable-switch.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/executable-switch.cpp b/src/executable-switch.cpp index cf9a4218..21f21846 100644 --- a/src/executable-switch.cpp +++ b/src/executable-switch.cpp @@ -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; } } }