diff options
| author | yipstanley <stanley_yip@brown.edu> | 2019-07-22 17:16:41 -0400 |
|---|---|---|
| committer | yipstanley <stanley_yip@brown.edu> | 2019-07-22 17:16:41 -0400 |
| commit | 4d6aee4230e60b67ba62609ef543845c230ce739 (patch) | |
| tree | 31af1ba8650bb9b0486d2dd86b41c88ed43aa829 /src/new_fields/InkField.ts | |
| parent | 5e9bcf2e35415fd0ab4dec4f0141511cd4d312d0 (diff) | |
| parent | fc1dbb1327d10bd1832d33a87d18cff1e836ecfb (diff) | |
merge from master
Diffstat (limited to 'src/new_fields/InkField.ts')
| -rw-r--r-- | src/new_fields/InkField.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/new_fields/InkField.ts b/src/new_fields/InkField.ts index 4e3b7abe0..39c6c8ce3 100644 --- a/src/new_fields/InkField.ts +++ b/src/new_fields/InkField.ts @@ -2,7 +2,7 @@ import { Deserializable } from "../client/util/SerializationHelper"; import { serializable, custom, createSimpleSchema, list, object, map } from "serializr"; import { ObjectField } from "./ObjectField"; import { Copy, ToScriptString } from "./FieldSymbols"; -import { deepCopy } from "../Utils"; +import { DeepCopy } from "../Utils"; export enum InkTool { None, @@ -39,7 +39,7 @@ export class InkField extends ObjectField { } [Copy]() { - return new InkField(deepCopy(this.inkData)); + return new InkField(DeepCopy(this.inkData)); } [ToScriptString]() { |
