From 5e4f921e1ba51b0c3c1f9c1595a91d8ef7de4848 Mon Sep 17 00:00:00 2001 From: Leonard Kim Date: Tue, 29 Aug 2017 13:28:34 -0700 Subject: [PATCH] ref(video-quality-label): do not show quality dialog --- css/modals/video-quality/_video-quality.scss | 1 - .../video-quality/components/VideoQualityLabel.web.js | 11 +++-------- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/css/modals/video-quality/_video-quality.scss b/css/modals/video-quality/_video-quality.scss index c442560cf..19b655ffd 100644 --- a/css/modals/video-quality/_video-quality.scss +++ b/css/modals/video-quality/_video-quality.scss @@ -136,7 +136,6 @@ * Give the label padding so it has more volume and can be easily clicked. */ .video-quality-label-status { - cursor: pointer; padding: 10px 5px; text-align: center; } diff --git a/react/features/video-quality/components/VideoQualityLabel.web.js b/react/features/video-quality/components/VideoQualityLabel.web.js index 3af3b4322..2e9d7d7a2 100644 --- a/react/features/video-quality/components/VideoQualityLabel.web.js +++ b/react/features/video-quality/components/VideoQualityLabel.web.js @@ -2,11 +2,8 @@ import React, { Component } from 'react'; import { connect } from 'react-redux'; import { translate } from '../../base/i18n'; -import { Popover } from '../../base/popover'; import { shouldRemoteVideosBeVisible } from '../../filmstrip'; -import { VideoQualityDialog } from './'; - import { VIDEO_QUALITY_LEVELS } from '../../base/conference'; @@ -151,18 +148,16 @@ export class VideoQualityLabel extends Component { = `${baseClasses} ${filmstrip} ${remoteVideosVisible} ${opening}`; return ( - } - id = 'videoResolutionLabel' - position = { 'left top' }> + id = 'videoResolutionLabel'>
{ _audioOnly ? : this._mapResolutionToTranslation(_resolution) }
-
+ ); }