Skip to content

Commit d83a5e1

Browse files
authored
Fix nightly post-#50528 merge (#51432)
1 parent a329210 commit d83a5e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/debug/dbg.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ namespace Debug {
431431
const above = lane > 0 ? connectors[column][lane - 1] : 0;
432432
let connector = connectors[column][lane];
433433
if (!connector) {
434-
if (left & Connection.Right) connector |= Connection.LeftRight;
434+
if (left & Connection.Right) connector = Connection.LeftRight;
435435
if (above & Connection.Down) connector |= Connection.UpDown;
436436
connectors[column][lane] = connector;
437437
}

0 commit comments

Comments
 (0)