This commit is contained in:
M66B 2021-07-19 11:18:36 +02:00
parent 0c0715ee3f
commit 51f1b0b8f4
1 changed files with 1 additions and 1 deletions

View File

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