fix sdl primary clipboard text leak

This commit is contained in:
Green Sky 2025-03-29 21:21:08 +01:00
parent 98e55e20ce
commit a1024c8fde
No known key found for this signature in database
GPG Key ID: DBE05085D874AB4A

@ -525,9 +525,10 @@ float ChatGui4::render(float time_delta, bool window_hidden, bool window_focused
if (!ImGui::IsItemFocused()) {
ImGui::SetKeyboardFocusHere(-1);
}
const char* primary_text = SDL_GetPrimarySelectionText();
char* primary_text = SDL_GetPrimarySelectionText();
if (primary_text != nullptr) {
ImGui::GetIO().AddInputCharactersUTF8(primary_text);
SDL_free(primary_text);
}
}
}