Added ImGuiKey_Space, mapped in every examples. Will be required for navigation. (#787)

This commit is contained in:
omar
2018-02-06 19:29:31 +01:00
parent 7e32fc7109
commit 057807f4a7
12 changed files with 23 additions and 11 deletions

View File

@ -224,6 +224,7 @@ bool ImGui_Marmalade_Init(bool install_callbacks)
io.KeyMap[ImGuiKey_Insert] = s3eKeyInsert;
io.KeyMap[ImGuiKey_Delete] = s3eKeyDelete;
io.KeyMap[ImGuiKey_Backspace] = s3eKeyBackspace;
io.KeyMap[ImGuiKey_Space] = s3eKeySpace;
io.KeyMap[ImGuiKey_Enter] = s3eKeyEnter;
io.KeyMap[ImGuiKey_Escape] = s3eKeyEsc;
io.KeyMap[ImGuiKey_A] = s3eKeyA;