Fixed using IsItemHovered() after EndChild() (#151)

features/sdl_renderer3_multiviewports
ocornut ago%!(EXTRA string=10 years)
parent 9c486ce4f4
commit eaab61f08b
  1. 4
      imgui.cpp

@ -2571,6 +2571,10 @@ void ImGui::EndChild()
sz.y = 0;
ImGui::End();
window = GetCurrentWindow();
ImGuiAabb bb(window->DC.CursorPos, window->DC.CursorPos + sz);
ItemAdd(bb, NULL);
ItemSize(sz);
}
}

Loading…
Cancel
Save