From 0708c97ffe2cdfdf4f576058450788e1b06ac129 Mon Sep 17 00:00:00 2001 From: Beka Westberg Date: Fri, 24 Mar 2023 12:58:33 -0700 Subject: [PATCH] fix: connection locations not updating (#6921) * fix: connection locations not updating * chore: update TODO --- core/rendered_connection.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/rendered_connection.ts b/core/rendered_connection.ts index 1e91778af..c472867db 100644 --- a/core/rendered_connection.ts +++ b/core/rendered_connection.ts @@ -187,7 +187,9 @@ export class RenderedConnection extends Connection { * was updated. */ moveTo(x: number, y: number): boolean { - const moved = this.x !== x || this.y !== y; + // TODO(#6922): Readd this optimization. + // const moved = this.x !== x || this.y !== y; + const moved = true; let updated = false; if (this.trackedState_ === RenderedConnection.TrackedState.WILL_TRACK) {