Merge pull request #15772 from godotengine/revert-15540-fix_color_to_html
Revert "Fix bad color to HTML conversion. Alpha channel was added before RGB."
This commit is contained in:
commit
3def642a15
@ -396,7 +396,7 @@ String Color::to_html(bool p_alpha) const {
|
||||
txt += _to_hex(g);
|
||||
txt += _to_hex(b);
|
||||
if (p_alpha)
|
||||
txt += _to_hex(a);
|
||||
txt = _to_hex(a) + txt;
|
||||
return txt;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user