mirror of
https://github.com/ocornut/imgui.git
synced 2025-04-16 18:25:01 +00:00
Fixed using IsItemHovered() after EndChild() (#151)
This commit is contained in:
parent
9c486ce4f4
commit
eaab61f08b
1 changed files with 4 additions and 0 deletions
|
@ -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…
Add table
Reference in a new issue