feat: always show labels

This commit is contained in:
Bettenbuk Zoltan 2019-07-16 11:52:49 +01:00 committed by Zoltan Bettenbuk
parent e08aeca28c
commit ec30af2844
1 changed files with 1 additions and 5 deletions

View File

@ -12,9 +12,7 @@ import {
import { import {
RecordingExpandedLabel RecordingExpandedLabel
} from '../../../recording'; } from '../../../recording';
import { isToolboxVisible } from '../../../toolbox';
import { TranscribingExpandedLabel } from '../../../transcribing'; import { TranscribingExpandedLabel } from '../../../transcribing';
import { shouldDisplayTileView } from '../../../video-layout';
import { VideoQualityExpandedLabel } from '../../../video-quality'; import { VideoQualityExpandedLabel } from '../../../video-quality';
import AbstractLabels, { import AbstractLabels, {
@ -364,9 +362,7 @@ function _mapStateToProps(state) {
return { return {
..._abstractMapStateToProps(state), ..._abstractMapStateToProps(state),
_reducedUI: state['features/base/responsive-ui'].reducedUI, _reducedUI: state['features/base/responsive-ui'].reducedUI,
_visible: !isToolboxVisible(state) _visible: !shouldDisplayNotifications(state)
&& !shouldDisplayTileView(state)
&& !shouldDisplayNotifications(state)
}; };
} }