1
0
mirror of https://github.com/ocornut/imgui.git synced 2024-11-24 15:50:25 +01:00

ColorButton: Undo ce203f99f5

This commit is contained in:
omar 2017-07-27 11:04:39 +08:00
parent 2e37db9002
commit c1c2b2400a

View File

@ -9088,7 +9088,7 @@ bool ImGui::ColorButton(const char* desc_id, const ImVec4& col, ImGuiColorEditFl
if (size.y == 0.0f)
size.y = default_size;
const ImRect bb(window->DC.CursorPos, window->DC.CursorPos + size);
ItemSize(bb, ImMin((size.y - g.FontSize) * 0.5f, style.FramePadding.y));
ItemSize(bb);//, ImMin((size.y - g.FontSize) * 0.5f, style.FramePadding.y));
if (!ItemAdd(bb, &id))
return false;