pull/200/head
M66B 3 years ago
parent 0c0715ee3f
commit 51f1b0b8f4

@ -1675,7 +1675,7 @@ public class HtmlHelper {
static String encodeWebColor(int color) {
int alpha = Color.alpha(color);
int rgb = 0xFFFFFF & color;
if (alpha == 0)
if (alpha == 255)
return String.format("#%06X", rgb);
else
return String.format("#%06X%02X", rgb, alpha);

Loading…
Cancel
Save