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'.
This commit is contained in:
Kawe Mazidjatari 2022-12-21 23:46:27 +01:00
parent 01724cfaad
commit 604e4a6705

View File

@ -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;