Browse Source

feat: always show labels

master
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
 import {
12
 import {
13
     RecordingExpandedLabel
13
     RecordingExpandedLabel
14
 } from '../../../recording';
14
 } from '../../../recording';
15
-import { isToolboxVisible } from '../../../toolbox';
16
 import { TranscribingExpandedLabel } from '../../../transcribing';
15
 import { TranscribingExpandedLabel } from '../../../transcribing';
17
-import { shouldDisplayTileView } from '../../../video-layout';
18
 import { VideoQualityExpandedLabel } from '../../../video-quality';
16
 import { VideoQualityExpandedLabel } from '../../../video-quality';
19
 
17
 
20
 import AbstractLabels, {
18
 import AbstractLabels, {
364
     return {
362
     return {
365
         ..._abstractMapStateToProps(state),
363
         ..._abstractMapStateToProps(state),
366
         _reducedUI: state['features/base/responsive-ui'].reducedUI,
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