Tables: Fixed stacked popups incorrectly accessing g.CurrentTable of parent-in-stack windows.

docking
ocornut 4 years ago
parent eb18636e02
commit 9372601322

@ -2931,6 +2931,7 @@ static void SetCurrentWindow(ImGuiWindow* window)
{
ImGuiContext& g = *GImGui;
g.CurrentWindow = window;
g.CurrentTable = window ? window->DC.CurrentTable : NULL;
if (window)
g.FontSize = g.DrawListSharedData.FontSize = window->CalcFontSize();
}

Loading…
Cancel
Save