diff options
author | Nathan-SR <144961007+Nathan-SR@users.noreply.github.com> | 2024-08-19 14:34:20 -0400 |
---|---|---|
committer | Nathan-SR <144961007+Nathan-SR@users.noreply.github.com> | 2024-08-19 14:34:20 -0400 |
commit | f8f777a469b0029109de1e6c57872a4d5b0a6659 (patch) | |
tree | a9210bfecbb7fdd09859e52bc216fe16e611c985 /src/ClientUtils.ts | |
parent | 26c636d45e21105bd914046a4ff447998c7e23cd (diff) |
start on field rendering
Diffstat (limited to 'src/ClientUtils.ts')
-rw-r--r-- | src/ClientUtils.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ClientUtils.ts b/src/ClientUtils.ts index d64210ce2..a4d9dd892 100644 --- a/src/ClientUtils.ts +++ b/src/ClientUtils.ts @@ -730,6 +730,7 @@ export function UpdateIcon( const newDiv = docViewContent.cloneNode(true) as HTMLDivElement; newDiv.style.width = width.toString(); newDiv.style.height = height.toString(); + console.log('width: ' + newDiv.style.width) replaceCanvases(docViewContent, newDiv); const htmlString = new XMLSerializer().serializeToString(newDiv); const nativeWidth = width; |