Fix local move for textBox

This commit is contained in:
matbgn 2022-06-25 23:23:21 +02:00
parent 93ae67208e
commit 5224c6dc97

View File

@ -985,8 +985,8 @@ const whiteboard = {
if (isStickyNote) {
cssclass += " stickyNote";
}
left = remote ? left + _this.viewCoords.x : left;
top = remote ? top + _this.viewCoords.y : top;
left = left + _this.viewCoords.x;
top = top + _this.viewCoords.y;
var textBox = $(
'<div id="' +
txId +