From b81566604fcada122babb1f8c985fcf4646f6c43 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Thu, 10 Nov 2022 22:03:27 +0100 Subject: [PATCH] Fix edge case where user could still enter tilde/space characters as first characters in console This could be done by entering a character in the console (setting m_nInputTextLen > 0), then selecting and replacing valid 'first' character out for a tilde/space. This fixes the issue. --- r5dev/gameui/IConsole.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/r5dev/gameui/IConsole.cpp b/r5dev/gameui/IConsole.cpp index ffeac60a..bce8839d 100644 --- a/r5dev/gameui/IConsole.cpp +++ b/r5dev/gameui/IConsole.cpp @@ -888,6 +888,14 @@ int CConsole::TextEditCallback(ImGuiInputTextCallbackData* iData) } case ImGuiInputTextFlags_CallbackEdit: { + // If user selected all text in the input field and replaces it with + // a tilde or space character, it will be set as the first character + // in the input field as m_nInputTextLen is set before the actual edit. + while (iData->Buf[0] == '~' || iData->Buf[0] == ' ') + { + iData->DeleteChars(0, 1); + } + if (iData->BufTextLen) // Attempt to build a summary.. { m_bCanAutoComplete = true;