aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/collectionFreeForm
diff options
context:
space:
mode:
authorNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2024-05-02 00:36:11 -0400
committerNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2024-05-02 00:36:11 -0400
commit154029278c92327eb48955ac2c7137b5a59b1d7d (patch)
treef519fd5e0b9aeee69a70781996322af3465aa5cd /src/client/views/collections/collectionFreeForm
parent7046d5b08275e58b173af915743ed8152c934ff0 (diff)
selected cell moves with col; jitter on col move index 0 fixed
Diffstat (limited to 'src/client/views/collections/collectionFreeForm')
-rw-r--r--src/client/views/collections/collectionFreeForm/MarqueeView.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/views/collections/collectionFreeForm/MarqueeView.tsx b/src/client/views/collections/collectionFreeForm/MarqueeView.tsx
index b913e05ad..62f391201 100644
--- a/src/client/views/collections/collectionFreeForm/MarqueeView.tsx
+++ b/src/client/views/collections/collectionFreeForm/MarqueeView.tsx
@@ -249,6 +249,7 @@ export class MarqueeView extends ObservableReactComponent<SubCollectionViewProps
if (this._visible) {
const mselect = this.marqueeSelect();
if (!e.shiftKey) {
+ console.log("marquee pointerup") //!!!
SelectionManager.DeselectAll(mselect.length ? undefined : this._props.Document);
}
const docs = mselect.length ? mselect : [this._props.Document];
@@ -373,6 +374,7 @@ export class MarqueeView extends ObservableReactComponent<SubCollectionViewProps
@undoBatch
pileup = action((e: KeyboardEvent | React.PointerEvent | undefined) => {
+ console.log("pileup")//!!!
const selected = this.marqueeSelect(false);
SelectionManager.DeselectAll();
selected.forEach(d => this._props.removeDocument?.(d));