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