diff --git a/react/features/conference/components/web/Conference.tsx b/react/features/conference/components/web/Conference.tsx index fb14f77..c5d504c 100644 --- a/react/features/conference/components/web/Conference.tsx +++ b/react/features/conference/components/web/Conference.tsx @@ -184,6 +184,13 @@ class Conference extends AbstractConference { override componentDidMount() { document.title = `${this.props._roomName} | ${interfaceConfig.APP_NAME}`; this._start(); + + // On mobile browsers, show the toolbox immediately since there is no + // mouse-move event to trigger it. The mobile timeout handler is a + // no-op so the toolbox stays visible until the user taps to hide it. + if (isMobileBrowser()) { + this.props.dispatch(showToolbox()); + } } /**