Ver código fonte

fix(rn, toolbox): Change button appearing order

master
Vlad Piersec 4 anos atrás
pai
commit
eb68467e15
1 arquivos alterados com 3 adições e 3 exclusões
  1. 3
    3
      react/features/toolbox/functions.native.js

+ 3
- 3
react/features/toolbox/functions.native.js Ver arquivo

@@ -28,17 +28,17 @@ export function getMovableButtons(width: number): Set<string> {
28 28
         break;
29 29
     }
30 30
     case width >= WIDTH.FIT_8_ICONS: {
31
-        buttons = [ 'chat', 'invite', 'raisehand', 'tileview' ];
31
+        buttons = [ 'chat', 'togglecamera', 'raisehand', 'tileview' ];
32 32
         break;
33 33
     }
34 34
 
35 35
     case width >= WIDTH.FIT_7_ICONS: {
36
-        buttons = [ 'chat', 'raisehand', 'invite' ];
36
+        buttons = [ 'chat', 'togglecamera', 'raisehand' ];
37 37
         break;
38 38
     }
39 39
 
40 40
     case width >= WIDTH.FIT_6_ICONS: {
41
-        buttons = [ 'chat', 'raisehand' ];
41
+        buttons = [ 'chat', 'togglecamera' ];
42 42
         break;
43 43
     }
44 44
 

Carregando…
Cancelar
Salvar