From 0aed852943e0f88b62838a26016ef9dd72e543b4 Mon Sep 17 00:00:00 2001 From: Aaron Dodson Date: Wed, 18 Jun 2025 09:47:30 -0700 Subject: [PATCH 1/2] chore: Clean up unused fields in mover.ts. --- src/actions/mover.ts | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/actions/mover.ts b/src/actions/mover.ts index 979664f6..69ea727b 100644 --- a/src/actions/mover.ts +++ b/src/actions/mover.ts @@ -55,18 +55,6 @@ export class Mover { */ protected moves: Map = new Map(); - /** - * The stashed isDragging function, which is replaced at the beginning - * of a keyboard drag and reset at the end of a keyboard drag. - */ - oldIsDragging: (() => boolean) | null = null; - - /** - * The stashed getGesture function, which is replaced at the beginning - * of a keyboard drag and reset at the end of a keyboard drag. - */ - oldGetGesture: ((e: PointerEvent) => Gesture | null) | null = null; - /** * The block's base drag strategy, which will be overridden during * keyboard drags and reset at the end of the drag. From 18617a652d3a377b46df6aebf8e90c223a65d336 Mon Sep 17 00:00:00 2001 From: Aaron Dodson Date: Wed, 18 Jun 2025 09:48:31 -0700 Subject: [PATCH 2/2] chore: Remove unused import. --- src/actions/mover.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/actions/mover.ts b/src/actions/mover.ts index 69ea727b..5af3e48b 100644 --- a/src/actions/mover.ts +++ b/src/actions/mover.ts @@ -8,7 +8,6 @@ import type { BlockSvg, IDragger, IDragStrategy, - Gesture, RenderedConnection, } from 'blockly'; import {