Merge pull request #15540 from robfram/fix_color_to_html
Fix bad color to HTML conversion. Alpha channel was added before RGB.
This commit is contained in:
commit
2ac27608a6
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
txt += _to_hex(a);
|
||||
return txt;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue