Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Flyout patch release #4422

Merged
merged 2 commits into from
Oct 30, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions blockly_compressed.js

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

2 changes: 1 addition & 1 deletion blockly_compressed.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion core/flyout_horizontal.js
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ Blockly.HorizontalFlyout.prototype.reflowInternal_ = function() {
// is in the correct position relative to the new absolute edge (ie
// toolbox edge).
this.targetWorkspace.translate(
0, this.targetWorkspace.scrollY + flyoutHeight);
this.targetWorkspace.scrollX, this.targetWorkspace.scrollY + flyoutHeight);
}

// Record the height for .getMetrics_ and .position.
Expand Down
2 changes: 1 addition & 1 deletion core/flyout_vertical.js
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ Blockly.VerticalFlyout.prototype.reflowInternal_ = function() {
// is in the correct position relative to the new absolute edge (ie
// toolbox edge).
this.targetWorkspace.translate(
this.targetWorkspace.scrollX + flyoutWidth, 0);
this.targetWorkspace.scrollX + flyoutWidth, this.targetWorkspace.scrollY);
}

// Record the width for .getMetrics_ and .position.
Expand Down
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": "3.20200924.3",
"version": "3.20200924.4",
"description": "Blockly is a library for building visual programming editors.",
"keywords": [
"blockly"
Expand Down