1
0
Fork 0
mirror of https://github.com/ocornut/imgui.git synced 2026-01-11 00:04:24 +00:00

Nav: fixed scoring when using PageUp/PageDown from a focused item which is outside of visible boundaries. (#9079)

We only use ImGuiNavMoveFlags_AlsoScoreVisibleSet when starting point is visible.
This commit is contained in:
ocornut 2025-11-19 19:01:03 +01:00
parent 0faa0dba15
commit 4ab86e1d61
2 changed files with 12 additions and 6 deletions

View file

@ -29,7 +29,7 @@
// Library Version
// (Integer encoded as XYYZZ for use in #if preprocessor conditionals, e.g. '#if IMGUI_VERSION_NUM >= 12345')
#define IMGUI_VERSION "1.92.5 WIP"
#define IMGUI_VERSION_NUM 19247
#define IMGUI_VERSION_NUM 19248
#define IMGUI_HAS_TABLE // Added BeginTable() - from IMGUI_VERSION_NUM >= 18000
#define IMGUI_HAS_TEXTURES // Added ImGuiBackendFlags_RendererHasTextures - from IMGUI_VERSION_NUM >= 19198