diff options
author | bobzel <zzzman@gmail.com> | 2023-07-02 12:36:37 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2023-07-02 12:36:37 -0400 |
commit | 02926d42bd7dfefbf87709abb45f1b359e4bfcdf (patch) | |
tree | 81fbdd1768753df5020806ab2170076b6de89496 /src/client/views/nodes/DocumentView.tsx | |
parent | b87d49ee80db8bb657244c96f504cf1f5db06084 (diff) |
made multicolumn/row views fit contents to panel and center. changed collection drop to propagate when embed is not enabled. fixed image box drop . made goldenlayout tabs selectable. turned off leaving pushpins on drag out. fixed long press to disable on drag.
Diffstat (limited to 'src/client/views/nodes/DocumentView.tsx')
-rw-r--r-- | src/client/views/nodes/DocumentView.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/views/nodes/DocumentView.tsx b/src/client/views/nodes/DocumentView.tsx index 733ee1ed1..c10c0005d 100644 --- a/src/client/views/nodes/DocumentView.tsx +++ b/src/client/views/nodes/DocumentView.tsx @@ -561,6 +561,7 @@ export class DocumentViewInternal extends DocComponent<DocumentViewInternalProps if (!Utils.isClick(e.clientX, e.clientY, this._downX, this._downY, Date.now())) { this.cleanupPointerEvents(); + this._longPressSelector && clearTimeout(this._longPressSelector); this.startDragging(this._downX, this._downY, ((e.ctrlKey || e.altKey) && 'embed') || ((this.Document.dragAction || this.props.dragAction || undefined) as dropActionType)); } }; |