diff --git a/react/features/toolbox/functions.native.js b/react/features/toolbox/functions.native.js index e12b86745..83a1bac7d 100644 --- a/react/features/toolbox/functions.native.js +++ b/react/features/toolbox/functions.native.js @@ -28,17 +28,17 @@ export function getMovableButtons(width: number): Set { break; } case width >= WIDTH.FIT_8_ICONS: { - buttons = [ 'chat', 'invite', 'raisehand', 'tileview' ]; + buttons = [ 'chat', 'togglecamera', 'raisehand', 'tileview' ]; break; } case width >= WIDTH.FIT_7_ICONS: { - buttons = [ 'chat', 'raisehand', 'invite' ]; + buttons = [ 'chat', 'togglecamera', 'raisehand' ]; break; } case width >= WIDTH.FIT_6_ICONS: { - buttons = [ 'chat', 'raisehand' ]; + buttons = [ 'chat', 'togglecamera' ]; break; }