diff options
| author | Bob Zeleznik <zzzman@gmail.com> | 2019-08-14 23:19:23 -0400 |
|---|---|---|
| committer | Bob Zeleznik <zzzman@gmail.com> | 2019-08-14 23:19:23 -0400 |
| commit | 5a2f6ca6f8f914e0c355c2211f506fc701451e91 (patch) | |
| tree | 5a4ad5814c368722efb7dafb6daa083eaa7a53e3 /src/client/views/DocumentDecorations.tsx | |
| parent | 71f27b718d9be29034ba233b5be18ea29f59f30b (diff) | |
fixed autoHeight resizing for textboxes.
Diffstat (limited to 'src/client/views/DocumentDecorations.tsx')
| -rw-r--r-- | src/client/views/DocumentDecorations.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/DocumentDecorations.tsx b/src/client/views/DocumentDecorations.tsx index d537e2dac..df526e01c 100644 --- a/src/client/views/DocumentDecorations.tsx +++ b/src/client/views/DocumentDecorations.tsx @@ -523,7 +523,7 @@ export class DocumentDecorations extends React.Component<{}, { value: string }> break; } - runInAction(() => FormattedTextBox.InputBoxOverlay = undefined); + if (!this._resizing) runInAction(() => FormattedTextBox.InputBoxOverlay = undefined); SelectionManager.SelectedDocuments().forEach(element => { if (dX !== 0 || dY !== 0 || dW !== 0 || dH !== 0) { let doc = PositionDocument(element.props.Document); |
