浏览代码

fix(filmstrip-only): hide video label, always show remote thumbnails

j8
Leonard Kim 8 年前
父节点
当前提交
27f968e753
共有 2 个文件被更改,包括 7 次插入1 次删除
  1. 2
    1
      conference.js
  2. 5
    0
      css/_videolayout_default.scss

+ 2
- 1
conference.js 查看文件

@@ -1843,7 +1843,8 @@ export default {
1843 1843
             // non-participants displaying video, such as with video sharing.
1844 1844
             const remoteVideosCount = APP.UI.getRemoteVideosCount();
1845 1845
 
1846
-            const shouldShowRemoteThumbnails = APP.UI.isPinned(localUserId)
1846
+            const shouldShowRemoteThumbnails = interfaceConfig.filmStripOnly
1847
+                || APP.UI.isPinned(localUserId)
1847 1848
                 || remoteVideosCount > 1
1848 1849
                 || remoteParticipantsCount !== remoteVideosCount;
1849 1850
 

+ 5
- 0
css/_videolayout_default.scss 查看文件

@@ -495,6 +495,11 @@
495 495
                     0px 0px 1px rgba(0,0,0,0.3);
496 496
 }
497 497
 
498
+.filmstrip-only {
499
+    #videoResolutionLabel {
500
+        display: none;
501
+    }
502
+}
498 503
 .video-state-indicator {
499 504
     background: $videoStateIndicatorBackground;
500 505
     color: $videoStateIndicatorColor;

正在加载...
取消
保存