diff options
| author | bobzel <zzzman@gmail.com> | 2023-03-27 18:21:13 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2023-03-27 18:21:13 -0400 |
| commit | 8ab9236664c561d54d6a41ecb1eb2eaf6064fc0c (patch) | |
| tree | e403baa003393047dc6e1bbee9d41658d59cb9ff /src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx | |
| parent | c70a4c82501a318136b04623f92b35461014b179 (diff) | |
changed longPress to always select and to show decorations. fixed single/double-click code and cleaned up behavior timeouts. fixed pointer events for tree view editing titles and using as powerpoint.
Diffstat (limited to 'src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx')
| -rw-r--r-- | src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx index be4c2a60e..8104ab1a7 100644 --- a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx +++ b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx @@ -822,7 +822,8 @@ export class CollectionFreeFormView extends CollectionSubView<Partial<collection if (InteractionUtils.IsType(e, InteractionUtils.TOUCHTYPE)) { Doc.ActiveTool = InkTool.None; if (this.props.isContentActive(true)) e.stopPropagation(); - } else if (!e.cancelBubble) { + } else { + this.props.DocumentView?.().docView?.cancelMoveEvents(); if (this.tryDragCluster(e, this._hitCluster)) { return true; } |
