From cae9d2bcbd3e6c70c579a52574d91ea8898a80bb Mon Sep 17 00:00:00 2001 From: zsviczian Date: Thu, 26 Feb 2026 12:55:13 +0100 Subject: [PATCH] fix: "hand" tool active after exiting view mode if laser point was used (#10841) --- packages/excalidraw/components/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/excalidraw/components/App.tsx b/packages/excalidraw/components/App.tsx index 59a11f804c..285421e357 100644 --- a/packages/excalidraw/components/App.tsx +++ b/packages/excalidraw/components/App.tsx @@ -4866,7 +4866,7 @@ class App extends React.Component { this.state.viewModeEnabled && event.key === KEYS.ESCAPE ) { - this.setActiveTool({ type: "hand" }); + this.setActiveTool({ type: "selection" }); return; }