Save on CTRL/CMD + S (#1287)
* save on shortcut * revert keys files * remove constant
This commit is contained in:
parent
729aeacc47
commit
b60f5fcf06
@ -6,6 +6,7 @@ import { ToolButton } from "../components/ToolButton";
|
|||||||
import { t } from "../i18n";
|
import { t } from "../i18n";
|
||||||
import useIsMobile from "../is-mobile";
|
import useIsMobile from "../is-mobile";
|
||||||
import { register } from "./register";
|
import { register } from "./register";
|
||||||
|
import { KEYS } from "../keys";
|
||||||
|
|
||||||
export const actionChangeProjectName = register({
|
export const actionChangeProjectName = register({
|
||||||
name: "changeProjectName",
|
name: "changeProjectName",
|
||||||
@ -47,6 +48,9 @@ export const actionSaveScene = register({
|
|||||||
saveAsJSON(elements, appState).catch((error) => console.error(error));
|
saveAsJSON(elements, appState).catch((error) => console.error(error));
|
||||||
return { commitToHistory: false };
|
return { commitToHistory: false };
|
||||||
},
|
},
|
||||||
|
keyTest: (event) => {
|
||||||
|
return event.key === "s" && event[KEYS.CTRL_OR_CMD];
|
||||||
|
},
|
||||||
PanelComponent: ({ updateData }) => (
|
PanelComponent: ({ updateData }) => (
|
||||||
<ToolButton
|
<ToolButton
|
||||||
type="button"
|
type="button"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user