Browse Source

feat: always show labels

j8
Bettenbuk Zoltan 6 years ago
parent
commit
ec30af2844
1 changed files with 1 additions and 5 deletions
  1. 1
    5
      react/features/conference/components/native/Labels.js

+ 1
- 5
react/features/conference/components/native/Labels.js View File

@@ -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
 

Loading…
Cancel
Save