diff --git a/src/assets/stylesheets/2d-hud.scss b/src/assets/stylesheets/2d-hud.scss
index 6f02fb36e065263cf2c0c48d4799baa8454485c5..54954262c7f331b206971550b3e65cc13cac0db1 100644
--- a/src/assets/stylesheets/2d-hud.scss
+++ b/src/assets/stylesheets/2d-hud.scss
@@ -6,6 +6,7 @@
   justify-content: center;
   align-items: center;
   width: 100%;
+  pointer-events: none;
 
   &:local(.top) {
     top: 10px;
diff --git a/src/react-components/2d-hud.js b/src/react-components/2d-hud.js
index 9a53feb219bcc5f283b164c850c466c0fcd3705a..bda0fe1080e3ca086d42667b6ce6ea24299d8669 100644
--- a/src/react-components/2d-hud.js
+++ b/src/react-components/2d-hud.js
@@ -71,7 +71,7 @@ class TopHUD extends Component {
 
     const hideExtrasOnOut = () => {
       this.hideVideoSharingButtonTimeout = setTimeout(() => {
-        //this.setState({ showVideoShareOptions: false });
+        this.setState({ showVideoShareOptions: false });
       }, 250);
     };