diff options
author | bob <bcz@cs.brown.edu> | 2019-11-06 12:35:51 -0500 |
---|---|---|
committer | bob <bcz@cs.brown.edu> | 2019-11-06 12:35:51 -0500 |
commit | f83205e4ea3486ebeeaa52918650bf6521c36cb9 (patch) | |
tree | 0f6e17b4621ad98e19e4dbb8a8dc6fe87df31eb5 /src/client/views/MainView.tsx | |
parent | bcc45bf8d448e56935172398a52327c68ff6117e (diff) |
schema view cleanups
Diffstat (limited to 'src/client/views/MainView.tsx')
-rw-r--r-- | src/client/views/MainView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/MainView.tsx b/src/client/views/MainView.tsx index 383300b22..773da05df 100644 --- a/src/client/views/MainView.tsx +++ b/src/client/views/MainView.tsx @@ -137,7 +137,7 @@ export class MainView extends React.Component { globalPointerDown = action((e: PointerEvent) => { this.isPointerDown = true; - AudioBox.AudioEnabled = true; + AudioBox.Enabled = true; const targets = document.elementsFromPoint(e.x, e.y); if (targets && targets.length && targets[0].className.toString().indexOf("contextMenu") === -1) { ContextMenu.Instance.closeMenu(); |