aboutsummaryrefslogtreecommitdiff
path: root/src/client/util/Import & Export/ImageUtils.ts
diff options
context:
space:
mode:
authorBob Zeleznik <zzzman@gmail.com>2020-04-11 21:50:07 -0400
committerBob Zeleznik <zzzman@gmail.com>2020-04-11 21:50:07 -0400
commit952318fb56cce16c428a5b41afe27a0ee4d20589 (patch)
tree18c546f792f47b40240a494816f98e614d1a1809 /src/client/util/Import & Export/ImageUtils.ts
parent959db1b84d2f0320665838724226e8176da70b66 (diff)
fixed double click on freeformviews. changed signature for DocumentHierarchyFromJson() to have an 'all' parameter
Diffstat (limited to 'src/client/util/Import & Export/ImageUtils.ts')
-rw-r--r--src/client/util/Import & Export/ImageUtils.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/util/Import & Export/ImageUtils.ts b/src/client/util/Import & Export/ImageUtils.ts
index ab8c73d15..135454a33 100644
--- a/src/client/util/Import & Export/ImageUtils.ts
+++ b/src/client/util/Import & Export/ImageUtils.ts
@@ -20,7 +20,7 @@ export namespace ImageUtils {
nativeHeight,
exifData: { error, data }
} = await Networking.PostToServer("/inspectImage", { source });
- document.exif = error || Docs.Get.DocumentHierarchyFromJson(data);
+ document.exif = error || Docs.Get.DocumentHierarchyFromJson(data, "", undefined, false);
const proto = Doc.GetProto(document);
proto["data-nativeWidth"] = nativeWidth;
proto["data-nativeHeight"] = nativeHeight;