diff --git a/src/scripts/changeTracker.ts b/src/scripts/changeTracker.ts index c6cc0c45b..4f97c13d7 100644 --- a/src/scripts/changeTracker.ts +++ b/src/scripts/changeTracker.ts @@ -90,7 +90,7 @@ export class ChangeTracker { async undoRedo(e) { if (e.ctrlKey || e.metaKey) { - if (e.key === 'y') { + if (e.key === 'y' || e.key == 'Z') { await this.redo() return true } else if (e.key === 'z') {