mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-23 08:14:06 +00:00
Support redo with Ctrl+Shift+Z (#957)
This commit is contained in:
@@ -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') {
|
||||
|
||||
Reference in New Issue
Block a user