From 5963f85ad6f1799c9f38e1deb70b1dc65eadecc6 Mon Sep 17 00:00:00 2001 From: damencho Date: Thu, 17 Mar 2016 13:29:07 -0500 Subject: [PATCH] Fixes avatar that is shown, when we switch from container with muted video to container from other type, like etherpad. --- modules/UI/videolayout/LargeVideo.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/UI/videolayout/LargeVideo.js b/modules/UI/videolayout/LargeVideo.js index 7d755f670..88d74cd65 100644 --- a/modules/UI/videolayout/LargeVideo.js +++ b/modules/UI/videolayout/LargeVideo.js @@ -332,6 +332,10 @@ class VideoContainer extends LargeContainer { } hide () { + // as the container is hidden/replaced by another container + // hide its avatar + this.showAvatar(false); + // its already hidden if (!this.isVisible) { return Promise.resolve();