From ec30af28442bcd14d30f6a78598024072324b685 Mon Sep 17 00:00:00 2001 From: Bettenbuk Zoltan Date: Tue, 16 Jul 2019 11:52:49 +0100 Subject: [PATCH] feat: always show labels --- react/features/conference/components/native/Labels.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/react/features/conference/components/native/Labels.js b/react/features/conference/components/native/Labels.js index 8dfa71673..06ba80d9a 100644 --- a/react/features/conference/components/native/Labels.js +++ b/react/features/conference/components/native/Labels.js @@ -12,9 +12,7 @@ import { import { RecordingExpandedLabel } from '../../../recording'; -import { isToolboxVisible } from '../../../toolbox'; import { TranscribingExpandedLabel } from '../../../transcribing'; -import { shouldDisplayTileView } from '../../../video-layout'; import { VideoQualityExpandedLabel } from '../../../video-quality'; import AbstractLabels, { @@ -364,9 +362,7 @@ function _mapStateToProps(state) { return { ..._abstractMapStateToProps(state), _reducedUI: state['features/base/responsive-ui'].reducedUI, - _visible: !isToolboxVisible(state) - && !shouldDisplayTileView(state) - && !shouldDisplayNotifications(state) + _visible: !shouldDisplayNotifications(state) }; }