prevent escape button causing an interrupt when no generation has been made yet

This commit is contained in:
AUTOMATIC1111 2024-02-17 11:40:53 +03:00
parent 310d6b9075
commit 4652fc5ac3
1 changed files with 1 additions and 1 deletions

View File

@ -167,7 +167,7 @@ document.addEventListener('keydown', function(e) {
const lightboxModal = document.querySelector('#lightboxModal');
if (!globalPopup || globalPopup.style.display === 'none') {
if (document.activeElement === lightboxModal) return;
if (interruptButton.style.display !== 'none') {
if (interruptButton.style.display === 'block') {
interruptButton.click();
e.preventDefault();
}