refactor: remove duplicate key handling (#2878)

This commit is contained in:
David Luzar 2021-01-30 10:30:00 +01:00 committed by GitHub
parent 4624ec2bd6
commit 6abf4f52ff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 32 deletions

View file

@ -5,6 +5,7 @@ import { actionDeleteSelected } from "./actionDeleteSelected";
import { getSelectedElements } from "../scene/selection";
import { exportCanvas } from "../data/index";
import { getNonDeletedElements } from "../element";
import { t } from "../i18n";
export const actionCopy = register({
name: "copy",
@ -91,6 +92,10 @@ export const actionCopyAsPng = register({
appState,
);
return {
appState: {
...appState,
toastMessage: t("toast.copyToClipboardAsPng"),
},
commitToHistory: false,
};
} catch (error) {
@ -105,4 +110,5 @@ export const actionCopyAsPng = register({
}
},
contextItemLabel: "labels.copyAsPng",
keyTest: (event) => event.code === CODES.C && event.altKey && event.shiftKey,
});