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:
commit
352b33106a
1 changed files with 1 additions and 2 deletions
|
@ -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;
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue