Correct fix for Ctrl+Z shortcut in image editor

This commit is contained in:
patriceac 2023-03-31 22:50:36 -07:00 committed by GitHub
parent 5dd3f46cee
commit 0b5c5b646f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -512,13 +512,13 @@ class ImageEditor {
}
show() {
this.popup.classList.add("active")
document.addEventListener("keydown", this.keyHandlerBound)
document.addEventListener("keyup", this.keyHandlerBound)
document.addEventListener("keydown", this.keyHandlerBound, true)
document.addEventListener("keyup", this.keyHandlerBound, true)
}
hide() {
this.popup.classList.remove("active")
document.removeEventListener("keydown", this.keyHandlerBound)
document.removeEventListener("keyup", this.keyHandlerBound)
document.removeEventListener("keydown", this.keyHandlerBound, true)
document.removeEventListener("keyup", this.keyHandlerBound, true)
}
setSize(width, height) {
if (width == this.width && height == this.height) {