mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
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:
parent
01724cfaad
commit
604e4a6705
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user