From c01f37ef8e5f5472af9022445eee611706836963 Mon Sep 17 00:00:00 2001 From: AwesomeAim <30537683+AwesomeAim@users.noreply.github.com> Date: Tue, 10 May 2022 04:58:15 -0700 Subject: Reveal the textbox after the preanimation There may be a better fix since I really am unfamiliar with this language and codebase, but this fixed it well enough. --- webAO/client.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'webAO') diff --git a/webAO/client.ts b/webAO/client.ts index bcb3e35..bd2407f 100644 --- a/webAO/client.ts +++ b/webAO/client.ts @@ -2517,6 +2517,8 @@ class Viewport { return } } else if (this.textnow !== this.chatmsg.content) { + const chatContainerBox = document.getElementById('client_chatcontainer'); + chatContainerBox.style.opacity = '1'; await this.handleTextTick(charLayers) } } -- cgit