|
@@ -5260,7 +5260,7 @@ bool ImGui::ColorPicker4(const char* label, float col[4], ImGuiColorEditFlags fl
|
|
|
{
|
|
|
if (flags & ImGuiColorEditFlags_InputRGB)
|
|
|
{
|
|
|
- ColorConvertHSVtoRGB(H >= 1.0f ? H - 10 * 1e-6f : H, S > 0.0f ? S : 10 * 1e-6f, V > 0.0f ? V : 1e-6f, col[0], col[1], col[2]);
|
|
|
+ ColorConvertHSVtoRGB(H, S, V, col[0], col[1], col[2]);
|
|
|
g.ColorEditLastHue = H;
|
|
|
g.ColorEditLastSat = S;
|
|
|
g.ColorEditLastColor = ColorConvertFloat4ToU32(ImVec4(col[0], col[1], col[2], 0));
|