default tool should be selection not hand in view mode
This commit is contained in:
parent
25af9023d4
commit
4c5e196f25
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user