1
0
Fork 0
mirror of https://github.com/ocornut/imgui.git synced 2026-01-23 02:04:22 +00:00

prevent "Delete" getting printed in text input

This commit is contained in:
SlowRiot 2024-12-08 15:57:41 +00:00
parent a1decdc274
commit bee91678d6

View file

@ -456,6 +456,7 @@ void ImGui_ImplEmscripten_Init() {
case ImGuiKey_Tab: // consuming tab prevents the user tabbing to other parts of the browser interface outside the window content
return imgui_io.WantCaptureKeyboard; // the event was consumed only if imgui wants to capture the keyboard
case ImGuiKey_Enter: // consuming enter prevents the word "Enter" appearing in text input via the keypress callback
case ImGuiKey_Delete: // consuming enter prevents the word "Delete" appearing in text input via the keypress callback
return imgui_io.WantTextInput; // the event was consumed only if we're currently accepting text input
default:
return false; // the event was not consumed