This commit is contained in:
ethxnblxd 2026-03-20 21:06:28 +08:00
parent e5265f4f38
commit dc98d89d5c

View file

@ -227,7 +227,7 @@ void ChatScreen::keyPressed(wchar_t ch, int eventKey)
return;
}
if (!g_KBMInput.IsKeyDown(VK_CONTROL) && isAllowedChatChar(ch) && static_cast<int>(message.length()) < SharedConstants::maxChatLength) // BLOCKS CTRL CHARS FROM BEING PARSED
if (isAllowedChatChar(ch) && static_cast<int>(message.length()) < SharedConstants::maxChatLength)
{
message.insert(cursorIndex, 1, ch);
cursorIndex++;