diff options
| author | bobzel <zzzman@gmail.com> | 2021-01-21 10:22:51 -0500 | 
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2021-01-21 10:22:51 -0500 | 
| commit | b3e2520f81a9956320b1aeba14ea880aa2887b15 (patch) | |
| tree | 68dc175c93454d0eb520852228bcb5b810890dba /src/client/views/PreviewCursor.tsx | |
| parent | cfeaa00ebec604f69cf2559809ed19abe126411f (diff) | |
fixed fitWidth for WebBox
Diffstat (limited to 'src/client/views/PreviewCursor.tsx')
| -rw-r--r-- | src/client/views/PreviewCursor.tsx | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/client/views/PreviewCursor.tsx b/src/client/views/PreviewCursor.tsx index ac61dd1d8..5b57ad19f 100644 --- a/src/client/views/PreviewCursor.tsx +++ b/src/client/views/PreviewCursor.tsx @@ -49,7 +49,7 @@ export class PreviewCursor extends React.Component<{}> {                  else if (re.test(plain)) {                      const url = plain;                      undoBatch(() => PreviewCursor._addDocument(Docs.Create.WebDocument(url, { -                        title: url, _fitWidth: true, _width: 500, _height: 300, useCors: true, x: newPoint[0], y: newPoint[1] +                        title: url, _width: 500, _height: 300, useCors: true, x: newPoint[0], y: newPoint[1]                      })))();                  }                  else if (plain.startsWith("__DashDocId(") || plain.startsWith("__DashCloneId(")) { | 
