This commit is contained in:
Vanessa 2023-01-22 18:51:23 +08:00
parent 9a834d0464
commit 405b2cd709
2 changed files with 7 additions and 1 deletions

View file

@ -209,7 +209,7 @@
padding: 0;
display: flex;
flex-direction: column;
max-height: 394px;
max-height: 386px;
&__item {
font-size: 24px;

View file

@ -740,6 +740,12 @@ ${unicode2Emoji(emoji.unicode, true)}</button>`;
event.stopPropagation();
return true;
}
if (event.key === "ArrowLeft" || event.key === "ArrowRight") {
hideElements(["hint"], protyle);
event.preventDefault();
event.stopPropagation();
return true;
}
return false;
}