|
@@ -426,6 +426,10 @@ const VideoLayout = {
|
426
|
426
|
APP.store.dispatch(setMaxReceiverVideoQuality(qualityLevel));
|
427
|
427
|
}
|
428
|
428
|
|
|
429
|
+ localVideoThumbnail && localVideoThumbnail.rerender();
|
|
430
|
+ Object.values(remoteVideos).forEach(
|
|
431
|
+ remoteVideoThumbnail => remoteVideoThumbnail.rerender());
|
|
432
|
+
|
429
|
433
|
if (onComplete && typeof onComplete === 'function') {
|
430
|
434
|
onComplete();
|
431
|
435
|
}
|
|
@@ -947,11 +951,6 @@ const VideoLayout = {
|
947
|
951
|
refreshLayout() {
|
948
|
952
|
localVideoThumbnail && localVideoThumbnail.updateDOMLocation();
|
949
|
953
|
VideoLayout.resizeVideoArea();
|
950
|
|
-
|
951
|
|
- localVideoThumbnail && localVideoThumbnail.rerender();
|
952
|
|
- Object.values(remoteVideos).forEach(
|
953
|
|
- remoteVideo => remoteVideo.rerender()
|
954
|
|
- );
|
955
|
954
|
},
|
956
|
955
|
|
957
|
956
|
/**
|