1
0
mirror of https://github.com/ocornut/imgui.git synced 2024-09-24 03:28:33 +02:00

Merge pull request #1454 from elect86/patch-2

Tweak
This commit is contained in:
omar 2017-11-22 11:24:20 +01:00 committed by GitHub
commit 3141df1459
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++;