fix: "hand" tool active after exiting view mode if laser point was used (#10841)

This commit is contained in:
zsviczian
2026-02-26 12:55:13 +01:00
committed by GitHub
parent 2874f9e48c
commit cae9d2bcbd
+1 -1
View File
@@ -4866,7 +4866,7 @@ class App extends React.Component<AppProps, AppState> {
this.state.viewModeEnabled &&
event.key === KEYS.ESCAPE
) {
this.setActiveTool({ type: "hand" });
this.setActiveTool({ type: "selection" });
return;
}