mirror of
https://github.com/google/blockly.git
synced 2026-01-11 10:57:07 +01:00
fix: Don't visit invisible inputs with the cursor. (#8892)
This commit is contained in:
@@ -468,7 +468,7 @@ export class ASTNode {
|
||||
return ASTNode.createFieldNode(field);
|
||||
}
|
||||
}
|
||||
if (input.connection) {
|
||||
if (input.connection && input.isVisible()) {
|
||||
return ASTNode.createInputNode(input);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user