diff options
author | Zachary Zhang <zacharyzhang7@gmail.com> | 2024-08-31 00:11:37 -0400 |
---|---|---|
committer | Zachary Zhang <zacharyzhang7@gmail.com> | 2024-08-31 00:11:37 -0400 |
commit | 0cf61501ec9be34294935f01973c1bd9cad6d267 (patch) | |
tree | 68931390d2a352cfd91d10e160051dcaa3266fc6 /src | |
parent | bc3b9900c390be9053fa7b32280c940bd4eb4129 (diff) |
uncomment a line
Diffstat (limited to 'src')
-rw-r--r-- | src/client/views/InkTranscription.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/InkTranscription.tsx b/src/client/views/InkTranscription.tsx index e66bd9dda..93f054462 100644 --- a/src/client/views/InkTranscription.tsx +++ b/src/client/views/InkTranscription.tsx @@ -292,7 +292,7 @@ export class InkTranscription extends React.Component { if (!this.currGroup.hasTextBox) { const newDoc = Docs.Create.TextDocument(textBoxText, { title: '', x: this.currGroup.x as number, y: (this.currGroup.y as number) + (this.currGroup.height as number) }); newDoc.height = 200; - //this.collectionFreeForm?.addDocument(newDoc); + this.collectionFreeForm?.addDocument(newDoc); this.currGroup.hasTextBox = true; } ref.editor.clear(); |