| 4578 | } |
| 4579 | |
| 4580 | static bool IsKeyPressedMap(ImGuiKey key, bool repeat) |
| 4581 | { |
| 4582 | const int key_index = GImGui->IO.KeyMap[key]; |
| 4583 | return (key_index >= 0) ? ImGui::IsKeyPressed(key_index, repeat) : false; |
| 4584 | } |
| 4585 | |
| 4586 | int ImGui::GetKeyIndex(ImGuiKey imgui_key) |
| 4587 | { |
no outgoing calls
no test coverage detected