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 {
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)
};
}