UI: Fix mixer hide toggle in studio mode

If the user would toggle hide in mixer in studio mode,
the source would show up in audio mixer, even if it
wasn't active.
This commit is contained in:
cg2121
2022-03-01 01:57:15 -06:00
committed by Jim
parent 27bb608130
commit 63f535c86e

View File

@@ -3531,6 +3531,8 @@ void OBSBasic::ActivateAudioSource(OBSSource source)
{
if (SourceMixerHidden(source))
return;
if (!obs_source_active(source))
return;
if (!obs_source_audio_active(source))
return;