Nav: Added ImGuiNavInput_KeyMenu aside from ImGuiNavInput_PadMenu as it is one differenciator between pad and keyboard that's very annoying with the keyboard.

Remove the move/resize behavior that appears than holding the button for a while. (#787)
This commit is contained in:
omar
2017-10-20 22:12:10 +02:00
parent 1c5b3fb1d2
commit 5fa81f2a26
2 changed files with 3 additions and 2 deletions

View File

@ -640,6 +640,7 @@ enum ImGuiNavInput_
ImGuiNavInput_PadFocusNext, // prev window (with PadMenu held) // e.g. R-trigger
ImGuiNavInput_PadTweakSlow, // slower tweaks // e.g. L-trigger, analog
ImGuiNavInput_PadTweakFast, // faster tweaks // e.g. R-trigger, analog
ImGuiNavInput_KeyMenu, // access menu // e.g. ALT
ImGuiNavInput_COUNT,
};