|
|
|
@ -2918,7 +2918,7 @@ class App extends React.Component<AppProps, AppState> {
|
|
|
|
|
if (event.key === KEYS.K && !event.altKey && !event[KEYS.CTRL_OR_CMD]) {
|
|
|
|
|
if (isLaserPointerActive(this.state)) {
|
|
|
|
|
this.setActiveTool({
|
|
|
|
|
type: this.state.viewModeEnabled ? "hand" : "selection",
|
|
|
|
|
type: "selection",
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
this.setActiveTool({ type: "laser" });
|
|
|
|
@ -2929,7 +2929,7 @@ class App extends React.Component<AppProps, AppState> {
|
|
|
|
|
if (this.state.viewModeEnabled) {
|
|
|
|
|
//revert to hand in case a key is pressed (K is handled above)
|
|
|
|
|
if (event.key !== KEYS.K) {
|
|
|
|
|
this.setActiveTool({ type: "hand" });
|
|
|
|
|
this.setActiveTool({ type: "selection" });
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|