fix(avatars): re-render avatar on any resize

This commit is contained in:
Leonard Kim 2019-08-12 11:11:23 -07:00 committed by virtuacoplenny
parent 8800cb4580
commit 7af081ea99
1 changed files with 4 additions and 5 deletions

View File

@ -426,6 +426,10 @@ const VideoLayout = {
APP.store.dispatch(setMaxReceiverVideoQuality(qualityLevel));
}
localVideoThumbnail && localVideoThumbnail.rerender();
Object.values(remoteVideos).forEach(
remoteVideoThumbnail => remoteVideoThumbnail.rerender());
if (onComplete && typeof onComplete === 'function') {
onComplete();
}
@ -947,11 +951,6 @@ const VideoLayout = {
refreshLayout() {
localVideoThumbnail && localVideoThumbnail.updateDOMLocation();
VideoLayout.resizeVideoArea();
localVideoThumbnail && localVideoThumbnail.rerender();
Object.values(remoteVideos).forEach(
remoteVideo => remoteVideo.rerender()
);
},
/**