From 78d1fd10e22ccd734d59f5481407930d8f6a903a Mon Sep 17 00:00:00 2001 From: Lyubo Marinov Date: Tue, 7 Nov 2017 17:25:42 -0600 Subject: [PATCH] [RN] Tap to toggle Toolbox --- react/features/conference/components/Conference.native.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/react/features/conference/components/Conference.native.js b/react/features/conference/components/Conference.native.js index e0ba655e8..81f4e0ea0 100644 --- a/react/features/conference/components/Conference.native.js +++ b/react/features/conference/components/Conference.native.js @@ -248,7 +248,10 @@ class Conference extends Component { const toolboxVisible = !this.props._toolboxVisible; this.props._setToolboxVisible(toolboxVisible); - this._setToolboxTimeout(toolboxVisible); + + // XXX If the user taps to toggle the visibility of the Toolbox, then no + // automatic toggling of the visibility should happen. + this._clearToolboxTimeout(); } /**