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

docking
ocornut 10 years ago
parent 9c486ce4f4
commit eaab61f08b

@ -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