Test transparent color / font size zero

This commit is contained in:
M66B 2022-03-05 09:21:48 +01:00
parent d767e1724d
commit 113797139d
1 changed files with 2 additions and 2 deletions

View File

@ -635,7 +635,7 @@ public class HtmlHelper {
if (color != null && color == Color.TRANSPARENT) {
if ("color".equals(key))
if (display_hidden)
if (display_hidden || !BuildConfig.PLAY_STORE_RELEASE)
sb.append("text-decoration:line-through;");
else if (false) {
Log.i("Removing color transparent " + element.tagName());
@ -748,7 +748,7 @@ public class HtmlHelper {
Float fsize = getFontSize(value, current);
if (fsize != null)
if (fsize == 0) {
if (display_hidden)
if (display_hidden || !BuildConfig.PLAY_STORE_RELEASE)
sb.append("text-decoration:line-through;");
else if (false) {
Log.i("Removing font size zero " + element.tagName());