From df26487936b4e2aeaec08f772eff966548d5bcb2 Mon Sep 17 00:00:00 2001 From: Ryan Di Date: Mon, 14 Apr 2025 17:22:23 +1000 Subject: [PATCH] call api to update when debug inputs change --- excalidraw-app/App.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/excalidraw-app/App.tsx b/excalidraw-app/App.tsx index 503fc7450..c6e05e286 100644 --- a/excalidraw-app/App.tsx +++ b/excalidraw-app/App.tsx @@ -170,6 +170,7 @@ const ConstraintsSettings = ({ ), ); window.location.hash = decodeURIComponent(hash.toString()); + excalidrawAPI.setScrollConstraints(constraints); }, [constraints]); const [selection, setSelection] = useState([]);