Merge pull request #4210 from byzod/patch-1

Fix #3904 (hotkey to edit weight of tag is not working in (most) localizations)
This commit is contained in:
AUTOMATIC1111 2022-11-04 10:47:49 +03:00 committed by GitHub
commit 352b33106a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,6 @@
addEventListener('keydown', (event) => {
let target = event.originalTarget || event.composedPath()[0];
if (!target.hasAttribute("placeholder")) return;
if (!target.placeholder.toLowerCase().includes("prompt")) return;
if (!target.matches("#toprow textarea.gr-text-input[placeholder]")) return;
if (! (event.metaKey || event.ctrlKey)) return;