fix(toolbox): Fix toolbox not auto-hiding. (#9002)

pull/9008/head jitsi-meet_5776
Horatiu Muresan 4 years ago committed by GitHub
parent b1833fddad
commit cbeb7b86cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      react/features/toolbox/components/web/Toolbox.js

@ -75,7 +75,7 @@ import {
setFullScreen,
setOverflowMenuVisible,
setToolbarHovered,
setToolboxVisible
showToolbox
} from '../../actions';
import { getToolbarAdditionalButtons, isToolboxVisible } from '../../functions';
import DownloadButton from '../DownloadButton';
@ -675,7 +675,7 @@ class Toolbox extends Component<Props> {
*/
_onTabIn() {
if (!this.props._visible) {
this.props.dispatch(setToolboxVisible(true));
this.props.dispatch(showToolbox());
}
}

Loading…
Cancel
Save