mirror of
https://github.com/ocornut/imgui.git
synced 2026-01-23 02:04:22 +00:00
ColorPicker3: Fixed
This commit is contained in:
parent
326c4e40f8
commit
6a241d4895
1 changed files with 1 additions and 1 deletions
|
|
@ -8741,7 +8741,7 @@ bool ImGui::ColorPicker3(const char* label, float col[3], ImGuiColorEditFlags fl
|
|||
float col4[4] = { col[0], col[1], col[2], 1.0f };
|
||||
if (!ColorPicker4(label, col4, flags & ~ImGuiColorEditFlags_Alpha))
|
||||
return false;
|
||||
col[0] = col4[1]; col[1] = col4[1]; col[2] = col4[2];
|
||||
col[0] = col4[0]; col[1] = col4[1]; col[2] = col4[2];
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue