From 27f968e7534fc67a92e7f1559b8372fcb0ea29f3 Mon Sep 17 00:00:00 2001 From: Leonard Kim Date: Wed, 24 May 2017 13:20:50 -0700 Subject: [PATCH] fix(filmstrip-only): hide video label, always show remote thumbnails --- conference.js | 3 ++- css/_videolayout_default.scss | 5 +++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/conference.js b/conference.js index bf79f678f..edea58036 100644 --- a/conference.js +++ b/conference.js @@ -1843,7 +1843,8 @@ export default { // non-participants displaying video, such as with video sharing. const remoteVideosCount = APP.UI.getRemoteVideosCount(); - const shouldShowRemoteThumbnails = APP.UI.isPinned(localUserId) + const shouldShowRemoteThumbnails = interfaceConfig.filmStripOnly + || APP.UI.isPinned(localUserId) || remoteVideosCount > 1 || remoteParticipantsCount !== remoteVideosCount; diff --git a/css/_videolayout_default.scss b/css/_videolayout_default.scss index 07748eee9..498f490db 100644 --- a/css/_videolayout_default.scss +++ b/css/_videolayout_default.scss @@ -495,6 +495,11 @@ 0px 0px 1px rgba(0,0,0,0.3); } +.filmstrip-only { + #videoResolutionLabel { + display: none; + } +} .video-state-indicator { background: $videoStateIndicatorBackground; color: $videoStateIndicatorColor;