From d83a5e1281379da54221fe39d5c0cb6ef4d1c109 Mon Sep 17 00:00:00 2001 From: Wesley Wigham Date: Mon, 7 Nov 2022 13:15:51 -0800 Subject: [PATCH] Fix nightly post-#50528 merge (#51432) --- src/debug/dbg.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/debug/dbg.ts b/src/debug/dbg.ts index 7e743bf491c..95ad740f41a 100644 --- a/src/debug/dbg.ts +++ b/src/debug/dbg.ts @@ -431,7 +431,7 @@ namespace Debug { const above = lane > 0 ? connectors[column][lane - 1] : 0; let connector = connectors[column][lane]; if (!connector) { - if (left & Connection.Right) connector |= Connection.LeftRight; + if (left & Connection.Right) connector = Connection.LeftRight; if (above & Connection.Down) connector |= Connection.UpDown; connectors[column][lane] = connector; }