mirror of
https://github.com/ocornut/imgui.git
synced 2026-01-11 00:04:24 +00:00
+ more consistently use Ctrl+XXX instead of Ctrl-XXX.
This commit is contained in:
parent
a9e53829d2
commit
39585aa90d
3 changed files with 15 additions and 13 deletions
2
imgui.h
2
imgui.h
|
|
@ -2436,7 +2436,7 @@ struct ImGuiIO
|
|||
bool MouseDownOwned[5]; // Track if button was clicked inside a dear imgui window or over void blocked by a popup. We don't request mouse capture from the application if click started outside ImGui bounds.
|
||||
bool MouseDownOwnedUnlessPopupClose[5]; // Track if button was clicked inside a dear imgui window.
|
||||
bool MouseWheelRequestAxisSwap; // On a non-Mac system, holding SHIFT requests WheelY to perform the equivalent of a WheelX event. On a Mac system this is already enforced by the system.
|
||||
bool MouseCtrlLeftAsRightClick; // (OSX) Set to true when the current click was a ctrl-click that spawned a simulated right click
|
||||
bool MouseCtrlLeftAsRightClick; // (OSX) Set to true when the current click was a Ctrl+click that spawned a simulated right click
|
||||
float MouseDownDuration[5]; // Duration the mouse button has been down (0.0f == just clicked)
|
||||
float MouseDownDurationPrev[5]; // Previous time the mouse button has been down
|
||||
float MouseDragMaxDistanceSqr[5]; // Squared maximum distance of how much mouse has traveled from the clicking point (used for moving thresholds)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue