Hide waiting to be let in bar when in pip mode.

This commit is contained in:
Alex Hart
2025-01-29 11:53:22 -04:00
committed by Greyson Parrelli
parent c723bc812a
commit b937c9c69b

View File

@@ -319,6 +319,10 @@ class ControlsAndInfoController private constructor(
showOrHideControlsOnUpdate(previousState) showOrHideControlsOnUpdate(previousState)
if (controlState == WebRtcControls.PIP) {
waitingToBeLetIn.visible = false
}
if (controlState != WebRtcControls.PIP && controlState.controlVisibilitiesChanged(previousState)) { if (controlState != WebRtcControls.PIP && controlState.controlVisibilitiesChanged(previousState)) {
updateControlVisibilities() updateControlVisibilities()
} }