We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a329210 commit d83a5e1Copy full SHA for d83a5e1
src/debug/dbg.ts
@@ -431,7 +431,7 @@ namespace Debug {
431
const above = lane > 0 ? connectors[column][lane - 1] : 0;
432
let connector = connectors[column][lane];
433
if (!connector) {
434
- if (left & Connection.Right) connector |= Connection.LeftRight;
+ if (left & Connection.Right) connector = Connection.LeftRight;
435
if (above & Connection.Down) connector |= Connection.UpDown;
436
connectors[column][lane] = connector;
437
}
0 commit comments