diff options
| author | AwesomeAim <30537683+AwesomeAim@users.noreply.github.com> | 2022-05-10 04:58:15 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-10 04:58:15 -0700 |
| commit | c01f37ef8e5f5472af9022445eee611706836963 (patch) | |
| tree | b460c847d4808d5987a36bef8b9ce9e2535c2cbb /webAO/client.ts | |
| parent | ae18b3bfcc33f720941c39427dfdbe7858bab133 (diff) | |
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.
Diffstat (limited to 'webAO/client.ts')
| -rw-r--r-- | webAO/client.ts | 2 |
1 files changed, 2 insertions, 0 deletions
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) } } |
