Shortcut(): fixed 8323a06 adding _Repeat to all Shortcut() calls.
diff --git a/imgui.cpp b/imgui.cpp
index d4c5e75..6ceee22 100644
--- a/imgui.cpp
+++ b/imgui.cpp
@@ -9432,7 +9432,7 @@
 
     // Default repeat behavior for Shortcut()
     // So e.g. pressing Ctrl+W and releasing Ctrl while holding W will not trigger the W shortcut.
-    if ((flags & ImGuiInputFlags_RepeatUntilMask_) == 0)
+    if ((flags & ImGuiInputFlags_Repeat) != 0 && (flags & ImGuiInputFlags_RepeatUntilMask_) == 0)
         flags |= ImGuiInputFlags_RepeatUntilKeyModsChange;
 
     if (!IsKeyChordPressed(key_chord, owner_id, flags))