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

Update imgui.cpp

This commit is contained in:
Giuseppe Barbieri 2017-11-22 11:19:52 +01:00 committed by GitHub
parent 176d8fbe74
commit 21b456e567
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9717,7 +9717,7 @@ bool ImGui::ColorEdit4(const char* label, float col[4], ImGuiColorEditFlags flag
PushItemWidth(w_items_all);
if (InputText("##Text", buf, IM_ARRAYSIZE(buf), ImGuiInputTextFlags_CharsHexadecimal | ImGuiInputTextFlags_CharsUppercase))
{
value_changed |= true;
value_changed = true;
char* p = buf;
while (*p == '#' || ImCharIsSpace(*p))
p++;