feat: always show labels
This commit is contained in:
parent
e08aeca28c
commit
ec30af2844
|
@ -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)
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue