mirror of
https://github.com/scratchfoundation/scratch-blocks.git
synced 2025-08-13 22:49:02 -04:00
Fix null pointer bug from commit 7928fac3ce
. In this context the options object is in "this", not workspace. (#692)
This commit is contained in:
parent
acaf81185e
commit
dad6e47f86
1 changed files with 1 additions and 1 deletions
|
@ -360,7 +360,7 @@ Blockly.WorkspaceSvg.prototype.addFlyout_ = function() {
|
|||
disabledPatternId: this.options.disabledPatternId,
|
||||
parentWorkspace: this,
|
||||
RTL: this.RTL,
|
||||
oneBasedIndex: workspace.options.oneBasedIndex,
|
||||
oneBasedIndex: this.options.oneBasedIndex,
|
||||
horizontalLayout: this.horizontalLayout,
|
||||
toolboxPosition: this.options.toolboxPosition
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue