diff options
author | Naafiyan Ahmed <naafiyan@gmail.com> | 2022-04-28 16:34:31 -0400 |
---|---|---|
committer | Naafiyan Ahmed <naafiyan@gmail.com> | 2022-04-28 16:34:31 -0400 |
commit | 4f6b6306803437851959e9ad214fd61a14207a20 (patch) | |
tree | 810d28e07fb85240588c296b08720c339cb14538 /src/client/util/InteractionUtils.tsx | |
parent | ab5a0bd7cee9366dabf4ce40bde89b67730da2a5 (diff) |
added basic code for subgrouping transcribed text
Diffstat (limited to 'src/client/util/InteractionUtils.tsx')
-rw-r--r-- | src/client/util/InteractionUtils.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/util/InteractionUtils.tsx b/src/client/util/InteractionUtils.tsx index 675dff00b..e2c5fab64 100644 --- a/src/client/util/InteractionUtils.tsx +++ b/src/client/util/InteractionUtils.tsx @@ -357,6 +357,7 @@ export namespace InteractionUtils { } export function IsDragging(oldTouches: Map<number, React.Touch>, newTouches: React.Touch[], leniency: number): boolean { + console.log("getting here"); for (const touch of newTouches) { if (touch) { const oldTouch = oldTouches.get(touch.identifier); |