diff --git a/assets/typescript/misuzu.tsx b/assets/typescript/misuzu.tsx index e6c7c169..61381b2c 100644 --- a/assets/typescript/misuzu.tsx +++ b/assets/typescript/misuzu.tsx @@ -96,7 +96,7 @@ window.addEventListener('load', () => { if(ctrlSubmit.length > 0) { for(let i = 0; i < ctrlSubmit.length; i++) { ctrlSubmit[i].addEventListener('keydown', ev => { - if(ev.code === 'Enter' /* i hate this fucking language so much */ + if((ev.code === 'Enter' || ev.code === 'NumpadEnter') /* i hate this fucking language so much */ && ev.ctrlKey && !ev.altKey && !ev.shiftKey && !ev.metaKey) { // for a hackjob forumPostingCloseOK = true;