aboutsummaryrefslogtreecommitdiff
path: root/src/ClientUtils.ts
diff options
context:
space:
mode:
authorNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2024-08-19 14:34:20 -0400
committerNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2024-08-19 14:34:20 -0400
commitf8f777a469b0029109de1e6c57872a4d5b0a6659 (patch)
treea9210bfecbb7fdd09859e52bc216fe16e611c985 /src/ClientUtils.ts
parent26c636d45e21105bd914046a4ff447998c7e23cd (diff)
start on field rendering
Diffstat (limited to 'src/ClientUtils.ts')
-rw-r--r--src/ClientUtils.ts1
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;