WebUI: Support Cmd key on macOS

This commit is contained in:
Thomas Piccirello 2025-06-30 10:31:25 -07:00
commit ee7aa5b31b
No known key found for this signature in database

View file

@ -1755,7 +1755,7 @@ window.addEventListener("DOMContentLoaded", (event) => {
switch (event.key) {
case "a":
case "A":
if (event.ctrlKey) {
if (event.ctrlKey || event.metaKey) {
if ((event.target.nodeName === "INPUT") || (event.target.nodeName === "TEXTAREA"))
return;
if (event.target.isContentEditable)