From 0f6fb90d04f51496f74269c79f4489f47fb79476 Mon Sep 17 00:00:00 2001 From: Johnpaul Date: Tue, 6 Jan 2026 20:34:16 +0100 Subject: [PATCH] format files --- src/lib/litegraph/src/LGraphCanvas.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/lib/litegraph/src/LGraphCanvas.ts b/src/lib/litegraph/src/LGraphCanvas.ts index 0b70aab815..a92bf5f52e 100644 --- a/src/lib/litegraph/src/LGraphCanvas.ts +++ b/src/lib/litegraph/src/LGraphCanvas.ts @@ -2024,7 +2024,11 @@ export class LGraphCanvas implements CustomEventDispatcher // Assertions: removing nullish is fine. // Note: capture flag must match addEventListener for removal to work - canvas.removeEventListener('pointercancel', this._mousecancel_callback!, true) + canvas.removeEventListener( + 'pointercancel', + this._mousecancel_callback!, + true + ) canvas.removeEventListener('pointerout', this._mouseout_callback!) canvas.removeEventListener('pointermove', this._mousemove_callback!) canvas.removeEventListener('pointerup', this._mouseup_callback!, true)