Skip to content

Commit c150ad5

Browse files
committed
Shortcuts: claim mods ownership once pressed. (#456, #2637, #2620, #2891, #3370, #3724, #4828, #5108, #5242, #5641)
1 parent 1002cfa commit c150ad5

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

imgui.cpp

+4
Original file line numberDiff line numberDiff line change
@@ -9743,6 +9743,10 @@ bool ImGui::Shortcut(ImGuiKeyChord key_chord, ImGuiInputFlags flags, ImGuiID own
97439743

97449744
if (!IsKeyChordPressed(key_chord, flags, owner_id))
97459745
return false;
9746+
9747+
// Claim mods during the press
9748+
SetKeyOwnersForKeyChord(key_chord & ImGuiMod_Mask_, owner_id);
9749+
97469750
IM_ASSERT((flags & ~ImGuiInputFlags_SupportedByShortcut) == 0); // Passing flags not supported by this function!
97479751
return true;
97489752
}

0 commit comments

Comments
 (0)