We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 592c541 commit f4961f6Copy full SHA for f4961f6
1 file changed
core/block_dragger.ts
@@ -382,7 +382,6 @@ export class BlockDragger implements IBlockDragger {
382
383
blockAnimation.disconnectUiStop();
384
this.connectionPreviewer.hidePreview();
385
- this.connectionPreviewer.dispose();
386
387
const preventMove =
388
!!this.dragTarget_ &&
@@ -417,6 +416,9 @@ export class BlockDragger implements IBlockDragger {
417
416
);
418
}
419
+ // Must dispose after `updateBlockAfterMove_` is called to not break the
420
+ // dynamic connections plugin.
421
+ this.connectionPreviewer.dispose();
422
this.workspace_.setResizesEnabled(true);
423
424
eventUtils.setGroup(false);
0 commit comments