Nav: Minor tidying up. (#787)

This commit is contained in:
omar
2018-02-05 14:53:07 +01:00
parent 2081fc15b5
commit 8ad88f725c
4 changed files with 15 additions and 15 deletions

View File

@ -455,6 +455,7 @@ namespace ImGui
IMGUI_API void StyleColorsLight(ImGuiStyle* dst = NULL);
// Focus, Activation
// (Prefer using "SetItemDefaultFocus()" over "if (IsWindowAppearing()) SetScrollHere()" when applicable, to make your code more forward compatible when navigation branch is merged)
IMGUI_API void SetItemDefaultFocus(); // make last item the default focused item of a window. Please use instead of "if (IsWindowAppearing()) SetScrollHere()" to signify "default item".
IMGUI_API void SetKeyboardFocusHere(int offset = 0); // focus keyboard on the next widget. Use positive 'offset' to access sub components of a multiple component widget. Use -1 to access previous widget.