diff options
author | bobzel <zzzman@gmail.com> | 2025-03-21 19:24:06 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2025-03-21 19:24:06 -0400 |
commit | bc308b888f41e8789f1b9f522ced46e68e726862 (patch) | |
tree | 6e1747536982c0dbc953b1ac7f47e8e1d0f56e58 /src/client/documents/DocUtils.ts | |
parent | 7e4d793eaa7e5b6b564355a11fa02a5611645f20 (diff) |
from last
Diffstat (limited to 'src/client/documents/DocUtils.ts')
-rw-r--r-- | src/client/documents/DocUtils.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/documents/DocUtils.ts b/src/client/documents/DocUtils.ts index 13f6f6920..b0170a192 100644 --- a/src/client/documents/DocUtils.ts +++ b/src/client/documents/DocUtils.ts @@ -383,8 +383,8 @@ export namespace DocUtils { const newDoc = DocUtils.copyDragFactory(dragDoc); if (newDoc) { newDoc._author = ClientUtils.CurrentUserEmail(); - newDoc._x = x; - newDoc._y = y; + newDoc.x = x; + newDoc.y = y; newDoc.$backgroundColor = Doc.UserDoc().textBackgroundColor; DocumentView.SetSelectOnLoad(newDoc); if (pivotField) { |