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:
Rémi Verschelde 2018-01-16 10:23:15 +01:00 committed by GitHub
commit 3def642a15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
}