mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-05-24 16:28:07 -04:00
frontend: Fix disabled sources appearing in audio mixer
This was partially addressed in #13118 but this check was missed
This commit is contained in:
@@ -490,6 +490,11 @@ void AudioMixer::reloadVolumeControls()
|
||||
return true;
|
||||
}
|
||||
|
||||
bool audioActive = obs_source_audio_active(source);
|
||||
if (!audioActive) {
|
||||
return true;
|
||||
}
|
||||
|
||||
auto uuidPointer = obs_source_get_uuid(source);
|
||||
if (!uuidPointer || !*uuidPointer) {
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user