Skip to content

Commit

Permalink
release: v10.4.1
Browse files Browse the repository at this point in the history
Merge pull request #7860 from google/rc/v10.4.1
  • Loading branch information
maribethb authored Feb 16, 2024
2 parents 592c541 + 50e22fe commit d782d7d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion core/block_dragger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,6 @@ export class BlockDragger implements IBlockDragger {

blockAnimation.disconnectUiStop();
this.connectionPreviewer.hidePreview();
this.connectionPreviewer.dispose();

const preventMove =
!!this.dragTarget_ &&
Expand Down Expand Up @@ -417,6 +416,9 @@ export class BlockDragger implements IBlockDragger {
);
}
}
// Must dispose after `updateBlockAfterMove_` is called to not break the
// dynamic connections plugin.
this.connectionPreviewer.dispose();
this.workspace_.setResizesEnabled(true);

eventUtils.setGroup(false);
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "blockly",
"version": "10.4.0",
"version": "10.4.1",
"description": "Blockly is a library for building visual programming editors.",
"keywords": [
"blockly"
Expand Down

0 comments on commit d782d7d

Please sign in to comment.