BeginChild() fixed missing rounding for child sizes which leaked into layout

This commit is contained in:
ocornut
2015-08-30 18:06:54 +01:00
parent 6eed3dc7c8
commit a3cad2ff06
2 changed files with 2 additions and 1 deletions

View File

@ -3188,7 +3188,7 @@ bool ImGui::BeginChild(const char* str_id, const ImVec2& size_arg, bool border,
ImGuiWindowFlags flags = ImGuiWindowFlags_NoTitleBar|ImGuiWindowFlags_NoResize|ImGuiWindowFlags_NoSavedSettings|ImGuiWindowFlags_ChildWindow;
const ImVec2 content_avail = ImGui::GetContentRegionAvail();
ImVec2 size = size_arg;
ImVec2 size = ImRound(size_arg);
if (size.x <= 0.0f)
{
if (size.x == 0.0f)