Browse Source

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

master
Horatiu Muresan 4 years ago
parent
commit
cbeb7b86cc
No account linked to committer's email address
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      react/features/toolbox/components/web/Toolbox.js

+ 2
- 2
react/features/toolbox/components/web/Toolbox.js View File

@@ -75,7 +75,7 @@ import {
75 75
     setFullScreen,
76 76
     setOverflowMenuVisible,
77 77
     setToolbarHovered,
78
-    setToolboxVisible
78
+    showToolbox
79 79
 } from '../../actions';
80 80
 import { getToolbarAdditionalButtons, isToolboxVisible } from '../../functions';
81 81
 import DownloadButton from '../DownloadButton';
@@ -675,7 +675,7 @@ class Toolbox extends Component<Props> {
675 675
      */
676 676
     _onTabIn() {
677 677
         if (!this.props._visible) {
678
-            this.props.dispatch(setToolboxVisible(true));
678
+            this.props.dispatch(showToolbox());
679 679
         }
680 680
     }
681 681
 

Loading…
Cancel
Save