diff --git a/react/features/toolbox/components/web/Toolbox.js b/react/features/toolbox/components/web/Toolbox.js index ced8e8917..96a2af5b8 100644 --- a/react/features/toolbox/components/web/Toolbox.js +++ b/react/features/toolbox/components/web/Toolbox.js @@ -626,6 +626,13 @@ class Toolbox extends Component { enable: !this.props._chatOpen })); + // Checks if there was any text selected by the user. + // Used for when we press simultaneously keys for copying + // text messages from the chat board + if (window.getSelection().toString() !== '') { + return false; + } + this._doToggleChat(); }