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