From c20c3eebe56bcd80fa6d74c7fd1bc84c9b759c06 Mon Sep 17 00:00:00 2001
From: Ray Schamp <ray@scratch.mit.edu>
Date: Tue, 26 Jun 2018 10:46:22 -0400
Subject: [PATCH] Don't stop when unmounting

This allows the project to continue playing/retain state while toggling language or player state.
---
 src/containers/gui.jsx | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/src/containers/gui.jsx b/src/containers/gui.jsx
index a2f6d29ef..8db598c85 100644
--- a/src/containers/gui.jsx
+++ b/src/containers/gui.jsx
@@ -66,9 +66,6 @@ class GUI extends React.Component {
             });
         }
     }
-    componentWillUnmount () {
-        this.props.vm.stopAll();
-    }
     render () {
         if (this.state.loadingError) {
             throw new Error(
-- 
GitLab