This is the only public API until we expose owner_id versions of the API as replacements.
| 10490 | |
| 10491 | // This is the only public API until we expose owner_id versions of the API as replacements. |
| 10492 | bool ImGui::IsKeyChordPressed(ImGuiKeyChord key_chord) |
| 10493 | { |
| 10494 | return IsKeyChordPressed(key_chord, ImGuiInputFlags_None, ImGuiKeyOwner_Any); |
| 10495 | } |
| 10496 | |
| 10497 | // This is equivalent to comparing KeyMods + doing a IsKeyPressed() |
| 10498 | bool ImGui::IsKeyChordPressed(ImGuiKeyChord key_chord, ImGuiInputFlags flags, ImGuiID owner_id) |
nothing calls this directly
no test coverage detected