Skip to content

Commit dc2afe3

Browse files
authored
fix: Improve accuracy of block navigability detection (#9725)
1 parent 3b9ed58 commit dc2afe3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/blockly/core/block_svg.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1926,7 +1926,7 @@ export class BlockSvg
19261926
}
19271927
}
19281928

1929-
if (this.workspace.getNavigator().getFirstChild(this)) {
1929+
if (this.workspace.getNavigator().getInNode(this)) {
19301930
hints.showBlockNavigationHint(this.workspace);
19311931
} else {
19321932
hints.showHelpHint(this.workspace);

0 commit comments

Comments
 (0)