diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2019-10-20 23:39:47 -0400 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2019-10-20 23:39:47 -0400 |
commit | 99cc00b9a0d83413acf99d8c1e9854484e831069 (patch) | |
tree | 73d841858c3631a03c33ea90157924c1b71546a3 /src/client/views/nodes/ImageBox.tsx | |
parent | 1a0eef7c2590a10ca5407c8ade34f10c75308f80 (diff) |
fixes to imagebox/keyvalue to get images to show up
Diffstat (limited to 'src/client/views/nodes/ImageBox.tsx')
-rw-r--r-- | src/client/views/nodes/ImageBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/ImageBox.tsx b/src/client/views/nodes/ImageBox.tsx index f3ba968f5..ff129cf1d 100644 --- a/src/client/views/nodes/ImageBox.tsx +++ b/src/client/views/nodes/ImageBox.tsx @@ -392,7 +392,7 @@ export class ImageBox extends DocAnnotatableComponent<FieldViewProps, ImageDocum let srcpath = paths[Math.min(paths.length - 1, NumCast(this.Document.curPage))]; let fadepath = paths[Math.min(paths.length - 1, 1)]; - (!this.Document.ignoreAspect && !this.props.leaveNativeSize) && this.resize(srcpath); + !this.Document.ignoreAspect && this.resize(srcpath); return ( <div className={`imageBox-cont${interactive}`} style={{ background: "transparent" }} |