function imgui.ColorEdit4WithFuckingCloseButton(label, colors, flags)
local col, closed
if imgui.ColorButton(label, imgui.ImVec4(colors[0], colors[1], colors[2], colors[3])) then
imgui.OpenPopup('da_ti_vnature_olen'..label)
end
imgui.SameLine()
imgui.Text(label)
if imgui.BeginPopup('da_ti_vnature_olen'..label) then
closed = imgui.Button('X##nu_zakroysya_pojaluysta', imgui.ImVec2(imgui.GetWindowWidth() - imgui.GetStyle().WindowPadding.x * 2, 20))
col = imgui.ColorPicker4('##suka_nu_i_govno'..label, colors, flags)
imgui.EndPopup()
end
return col, closed
end