diff --git a/core/block_dragger.ts b/core/block_dragger.ts index 5809f7484..0a2cb0f33 100644 --- a/core/block_dragger.ts +++ b/core/block_dragger.ts @@ -346,6 +346,7 @@ export class BlockDragger implements IBlockDragger { /** Fire a move event at the end of a block drag. */ protected fireMoveEvent_() { + if (this.draggingBlock_.isDeadOrDying()) return; const event = new (eventUtils.get(eventUtils.BLOCK_MOVE))( this.draggingBlock_) as BlockMove; event.oldCoordinate = this.startXY_;