update Dear ImGui to 1.91.3

This commit is contained in:
tildearrow 2025-08-11 14:22:13 -05:00
parent c6d5913686
commit 623fce4f01
12 changed files with 806 additions and 489 deletions

View file

@ -1,4 +1,4 @@
// dear imgui, v1.91.2
// dear imgui, v1.91.3
// (tables and columns code)
/*
@ -1487,7 +1487,9 @@ void ImGui::EndTable()
{
short backup_nav_layers_active_mask = inner_window->DC.NavLayersActiveMask;
inner_window->DC.NavLayersActiveMask |= 1 << ImGuiNavLayer_Main; // So empty table don't appear to navigate differently.
g.CurrentTable = NULL; // To avoid error recovery recursing
EndChild();
g.CurrentTable = table;
inner_window->DC.NavLayersActiveMask = backup_nav_layers_active_mask;
}
else