This commit is contained in:
X1627315083@163.com
2026-04-20 15:40:41 +08:00
parent d4d9c2eede
commit a649f1fc63

View File

@@ -108,6 +108,7 @@ export class EventManager {
const list = [
{ key: "ctrl-c", handler: () => this.handleCopy(event, activeNodeID) },
{ key: "delete", handler: () => this.handleDelete(event, activeNodeID) },
{ key: "Backspace", handler: () => this.handleDelete(event, activeNodeID) },
{ key: "ctrl-z", handler: () => this.stateManager.undoState() },
{ key: "ctrl-shift-z", handler: () => this.stateManager.redoState() },
]