fix(rn, toolbox): Change button appearing order

This commit is contained in:
Vlad Piersec 2021-03-23 09:44:58 +02:00 committed by vp8x8
parent 6a5d6afc94
commit eb68467e15
1 changed files with 3 additions and 3 deletions

View File

@ -28,17 +28,17 @@ export function getMovableButtons(width: number): Set<string> {
break; break;
} }
case width >= WIDTH.FIT_8_ICONS: { case width >= WIDTH.FIT_8_ICONS: {
buttons = [ 'chat', 'invite', 'raisehand', 'tileview' ]; buttons = [ 'chat', 'togglecamera', 'raisehand', 'tileview' ];
break; break;
} }
case width >= WIDTH.FIT_7_ICONS: { case width >= WIDTH.FIT_7_ICONS: {
buttons = [ 'chat', 'raisehand', 'invite' ]; buttons = [ 'chat', 'togglecamera', 'raisehand' ];
break; break;
} }
case width >= WIDTH.FIT_6_ICONS: { case width >= WIDTH.FIT_6_ICONS: {
buttons = [ 'chat', 'raisehand' ]; buttons = [ 'chat', 'togglecamera' ];
break; break;
} }