From 604e4a67051a4a973b0062d94e8973e21fbbd62e Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Wed, 21 Dec 2022 23:46:27 +0100 Subject: [PATCH] Fix console bug stripping all spaces from paste Fixed a bug that gets triggered when pasting some text in the input field that containing space characters. All spaces will be lost during the paste. Issue has been fixed by removing an extraneous check for space characters, the initial space character input already gets blocked in case 'ImGuiInputTextFlags_CallbackEdit'. --- r5dev/gameui/IConsole.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r5dev/gameui/IConsole.cpp b/r5dev/gameui/IConsole.cpp index 13a9beca..0d012646 100644 --- a/r5dev/gameui/IConsole.cpp +++ b/r5dev/gameui/IConsole.cpp @@ -877,7 +877,7 @@ int CConsole::TextEditCallback(ImGuiInputTextCallbackData* iData) const ImWchar c = iData->EventChar; if (!m_nInputTextLen) { - if (c == '~' || c == ' ') // Discard space and tilde character as first input. + if (c == '~') // Discard tilde character as first input. { iData->EventChar = 0; return 1;