diff --git a/modules/UI/videolayout/LargeVideo.js b/modules/UI/videolayout/LargeVideo.js index 79699e354..cfe063f13 100644 --- a/modules/UI/videolayout/LargeVideo.js +++ b/modules/UI/videolayout/LargeVideo.js @@ -239,6 +239,9 @@ class VideoContainer extends LargeContainer { } showAvatar (show) { + // if we are showing the avatar, this means there is no video on large + // so let's hide its video wrapper + show ? this.hide() : this.show(); this.$avatar.css("visibility", show ? "visible" : "hidden"); }