diff --git a/src/webpage/channel.ts b/src/webpage/channel.ts index e442ff8..f1451ce 100644 --- a/src/webpage/channel.ts +++ b/src/webpage/channel.ts @@ -731,6 +731,8 @@ class Channel extends SnowFlake{ this.replyingto.div.classList.remove("replying"); } this.replyingto = message; + const typebox = document.getElementById("typebox") as HTMLElement; + typebox.focus(); if(!this.replyingto?.div)return; console.log(message); this.replyingto.div.classList.add("replying");