瀏覽代碼

fix(rn, toolbox): Change button appearing order

master
Vlad Piersec 4 年之前
父節點
當前提交
eb68467e15
共有 1 個檔案被更改,包括 3 行新增3 行删除
  1. 3
    3
      react/features/toolbox/functions.native.js

+ 3
- 3
react/features/toolbox/functions.native.js 查看文件

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

Loading…
取消
儲存