mirror of
https://github.com/Drezil/imgui.git
synced 2024-11-15 01:17:00 +00:00
Fixed alignment of ColorEdit4() label
This commit is contained in:
parent
79d1a9d941
commit
a3e368a477
@ -5448,9 +5448,13 @@ bool ImGui::ColorEdit4(const char* label, float col[4], bool alpha)
|
|||||||
// Don't set local copy of 'edit_mode' right away!
|
// Don't set local copy of 'edit_mode' right away!
|
||||||
g.ColorEditModeStorage.SetInt(id, (edit_mode + 1) % 3);
|
g.ColorEditModeStorage.SetInt(id, (edit_mode + 1) % 3);
|
||||||
}
|
}
|
||||||
|
ImGui::SameLine();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
ImGui::SameLine(0, (int)style.ItemInnerSpacing.x);
|
||||||
}
|
}
|
||||||
|
|
||||||
ImGui::SameLine();
|
|
||||||
ImGui::TextUnformatted(label, FindTextDisplayEnd(label));
|
ImGui::TextUnformatted(label, FindTextDisplayEnd(label));
|
||||||
|
|
||||||
// Convert back
|
// Convert back
|
||||||
|
Loading…
Reference in New Issue
Block a user