Always suppress succesive lines

This commit is contained in:
M66B 2020-11-15 08:39:13 +01:00
parent 13d0ba2816
commit ed792c240b
1 changed files with 22 additions and 23 deletions

View File

@ -2250,8 +2250,7 @@ public class HtmlHelper {
setSpan(ssb, new StyleSpan(Typeface.BOLD), start, ssb.length());
break;
case "hr":
boolean dashed = "true".equals(element.attr("x-dashed"));
if (dashed) {
// Suppress succesive lines
LineSpan[] lines = ssb.getSpans(0, ssb.length(), LineSpan.class);
int last = -1;
if (lines != null)
@ -2273,11 +2272,11 @@ public class HtmlHelper {
if (blank)
break;
}
}
ssb.append(LINE);
boolean dashed = "true".equals(element.attr("x-dashed"));
float stroke = context.getResources().getDisplayMetrics().density;
float dash = (dashed ? dp3 : 0f);
ssb.append(LINE);
setSpan(ssb, new LineSpan(colorSeparator, stroke, dash), start, ssb.length());
break;
case "img":