From 5b103e1d7922b2d8dab432b72762b421e34aa3e1 Mon Sep 17 00:00:00 2001 From: Aaron Dodson Date: Thu, 17 Apr 2025 15:39:04 -0700 Subject: [PATCH] fix: Fix bug that caused flyout items under the mouse to be selected without movement. (#8900) --- core/block_flyout_inflater.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/block_flyout_inflater.ts b/core/block_flyout_inflater.ts index b180dbc0c..49f65c1f3 100644 --- a/core/block_flyout_inflater.ts +++ b/core/block_flyout_inflater.ts @@ -222,7 +222,7 @@ export class BlockFlyoutInflater implements IFlyoutInflater { ); blockListeners.push( - browserEvents.bind(block.getSvgRoot(), 'pointerenter', null, () => { + browserEvents.bind(block.getSvgRoot(), 'pointermove', null, () => { if (!this.flyout?.targetWorkspace?.isDragging()) { block.addSelect(); }