|
@@ -12,9 +12,7 @@ import {
|
12
|
12
|
import {
|
13
|
13
|
RecordingExpandedLabel
|
14
|
14
|
} from '../../../recording';
|
15
|
|
-import { isToolboxVisible } from '../../../toolbox';
|
16
|
15
|
import { TranscribingExpandedLabel } from '../../../transcribing';
|
17
|
|
-import { shouldDisplayTileView } from '../../../video-layout';
|
18
|
16
|
import { VideoQualityExpandedLabel } from '../../../video-quality';
|
19
|
17
|
|
20
|
18
|
import AbstractLabels, {
|
|
@@ -364,9 +362,7 @@ function _mapStateToProps(state) {
|
364
|
362
|
return {
|
365
|
363
|
..._abstractMapStateToProps(state),
|
366
|
364
|
_reducedUI: state['features/base/responsive-ui'].reducedUI,
|
367
|
|
- _visible: !isToolboxVisible(state)
|
368
|
|
- && !shouldDisplayTileView(state)
|
369
|
|
- && !shouldDisplayNotifications(state)
|
|
365
|
+ _visible: !shouldDisplayNotifications(state)
|
370
|
366
|
};
|
371
|
367
|
}
|
372
|
368
|
|