From d93a6f09fe40e022737b6ca740c462872023ebcb Mon Sep 17 00:00:00 2001 From: Mark Tolmacs Date: Sat, 8 Nov 2025 15:45:43 +0100 Subject: [PATCH] chore: Introduce different debug color for orbit and other binding modes --- excalidraw-app/components/DebugCanvas.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/excalidraw-app/components/DebugCanvas.tsx b/excalidraw-app/components/DebugCanvas.tsx index 9538495b21..9df430376b 100644 --- a/excalidraw-app/components/DebugCanvas.tsx +++ b/excalidraw-app/components/DebugCanvas.tsx @@ -196,7 +196,7 @@ const renderBindings = ( zoom, dim, dim, - "red", + element.startBinding?.mode === "orbit" ? "red" : "black", ); } @@ -215,7 +215,7 @@ const renderBindings = ( zoom, dim, dim, - "red", + element.endBinding?.mode === "orbit" ? "red" : "black", ); } }