File tree 1 file changed +2
-2
lines changed
src/components/Blockly/blocks
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -386,7 +386,7 @@ Blockly.Blocks["procedures_defnoreturn"] = {
386
386
displayRenamedVar_ : function ( oldName , newName ) {
387
387
this . updateParams_ ( ) ;
388
388
// Update the mutator's variables if the mutator is open.
389
- if ( this . mutator . isVisible ( ) ) {
389
+ if ( this . mutator . bubbleIsVisible ( ) ) {
390
390
const blocks = this . mutator . workspace_ . getAllBlocks ( false ) ;
391
391
for ( let i = 0 , block ; ( block = blocks [ i ] ) ; i ++ ) {
392
392
if (
@@ -832,7 +832,7 @@ Blockly.Blocks["procedures_callnoreturn"] = {
832
832
this . workspace ,
833
833
) ;
834
834
const mutatorOpen =
835
- defBlock && defBlock . mutator && defBlock . mutator . isVisible ( ) ;
835
+ defBlock && defBlock . mutator && defBlock . mutator . bubbleIsVisible ( ) ;
836
836
if ( ! mutatorOpen ) {
837
837
this . quarkConnections_ = { } ;
838
838
this . quarkIds_ = null ;
You can’t perform that action at this time.
0 commit comments