diff options
| author | bobzel <zzzman@gmail.com> | 2024-03-09 19:05:30 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2024-03-09 19:05:30 -0500 |
| commit | f1ed1cff137c06afc4d4db8a8778f7827404889b (patch) | |
| tree | 8dcf213eabe1472bc92dbada69b3cfcbc8d0e363 /src/client/views/PreviewCursor.tsx | |
| parent | 7164179264d057986bfd5f303c61248f1c189406 (diff) | |
fixed up default text that uses a template to process an initial carriage return properly. fixed text with inherited templates to be able to show fields with a default dashField value from template that can be overidden on instance.
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 456b753b4..a94c18295 100644 --- a/src/client/views/PreviewCursor.tsx +++ b/src/client/views/PreviewCursor.tsx @@ -85,7 +85,7 @@ export class PreviewCursor extends ObservableReactComponent<{}> { } else { FormattedTextBox.PasteOnLoad = e; if (e.clipboardData.getData('dash/pdfAnchor')) e.preventDefault(); - UndoManager.RunInBatch(() => this._addLiveTextDoc?.(DocUtils.GetNewTextDoc('', newPoint[0], newPoint[1], 500, undefined, undefined, undefined)), 'paste'); + UndoManager.RunInBatch(() => this._addLiveTextDoc?.(DocUtils.GetNewTextDoc('', newPoint[0], newPoint[1], 500, undefined, undefined)), 'paste'); } } //pasting in images |
