mirror of
https://github.com/easydiffusion/easydiffusion.git
synced 2025-06-20 09:57:49 +02:00
Merge pull request #729 from patriceac/patch-12
ESC keyboard shortcut to close the image editor
This commit is contained in:
commit
7832524963
@ -604,6 +604,9 @@ class ImageEditor {
|
|||||||
if (event.key == "y" && event.ctrlKey) {
|
if (event.key == "y" && event.ctrlKey) {
|
||||||
this.history.redo()
|
this.history.redo()
|
||||||
}
|
}
|
||||||
|
if (event.key === "Escape") {
|
||||||
|
this.hide()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// dropper ctrl holding handler stuff
|
// dropper ctrl holding handler stuff
|
||||||
|
Loading…
x
Reference in New Issue
Block a user