We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52a8420 commit 40927bbCopy full SHA for 40927bb
src/actions/enter.ts
@@ -153,11 +153,11 @@ export class EnterAction {
153
workspace.getCursor()?.setCurNode(ASTNode.createBlockNode(newBlock)!);
154
this.mover.startMove(workspace);
155
156
- const isTopLevelBlock =
+ const isStartBlock =
157
!newBlock.outputConnection &&
158
!newBlock.nextConnection &&
159
!newBlock.previousConnection;
160
- if (isTopLevelBlock) {
+ if (isStartBlock) {
161
showUnconstrainedMoveHint(workspace, false);
162
} else {
163
showConstrainedMovementHint(workspace);
0 commit comments