You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: imgui.cpp
+18-13
Original file line number
Diff line number
Diff line change
@@ -143,7 +143,7 @@ CODE
143
143
- CTRL+X, CTRL+C, CTRL+V: Use OS clipboard.
144
144
- CTRL+Z, CTRL+Y: Undo, Redo.
145
145
- ESCAPE: Revert text to its original value.
146
-
- On OSX, controls are automatically adjusted to match standard OSX text editing shortcuts and behaviors.
146
+
- On OSX, controls are automatically adjusted to match standard OSX text editing 2ts and behaviors.
147
147
148
148
- KEYBOARD CONTROLS
149
149
- Basic:
@@ -430,7 +430,12 @@ CODE
430
430
When you are not sure about an old symbol or function name, try using the Search/Find function of your IDE to look for comments or references in all imgui files.
431
431
You can read releases logs https://github.com/ocornut/imgui/releases for more details.
432
432
433
-
- 2024/05/22 (1.90.7) - inputs internals: renamed ImGuiKeyOwner_None to ImGuiKeyOwner_NoOwner, to make use more explicit and reduce confusion with the default it is a non-zero value and cannot be the default value (never made public, but disclosing as I expect a few users caught on owner-aware inputs).
433
+
- 2024/05/22 (1.90.7) - inputs (internals): renamed ImGuiKeyOwner_None to ImGuiKeyOwner_NoOwner, to make use more explicit and reduce confusion with the default it is a non-zero value and cannot be the default value (never made public, but disclosing as I expect a few users caught on owner-aware inputs).
434
+
- inputs (internals): Shortcut(), SetShortcutRouting(): swapped last two parameters order in function signatures:
for various reasons those changes makes sense. They are being made because making some of those API public.
438
+
only past users of imgui_internal.h with the extra parameters will be affected. Added asserts for valid flags in various functions to detect _some_ misuses, BUT NOT ALL.
434
439
- 2024/05/16 (1.90.7) - inputs: on macOS X, Cmd and Ctrl keys are now automatically swapped by io.AddKeyEvent() as this naturally align with how macOS X uses those keys.
435
440
- it shouldn't really affect you unless you had custom shortcut swapping in place for macOS X apps.
436
441
- removed ImGuiMod_Shortcut which was previously dynamically remapping to Ctrl or Cmd/Super. It is now unnecessary to specific cross-platform idiomatic shortcuts. (#2343, #4084, #5923, #456)
IMGUI_API boolSetShortcutRouting(ImGuiKeyChord key_chord, ImGuiID owner_id, ImGuiInputFlags flags = 0); // owner_id needs to be explicit and cannot be 0
// Using Shortcut() with ImGuiInputFlags_RouteFocused (default policy) to allow routing operations for other code (e.g. calling window trying to use CTRL+A and CTRL+B: formet would be handled by InputText)
4494
4494
// Otherwise we could simply assume that we own the keys as we are active.
// We allow validate/cancel with Nav source (gamepad) to makes it easier to undo an accidental NavInput press with no keyboard wired, but otherwise it isn't very useful.
0 commit comments