1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-02-24 07:01:05 +00:00

Small fix

This commit is contained in:
M66B 2022-01-23 19:18:30 +01:00
parent b7f2999af8
commit 4fdab88109

View file

@ -221,9 +221,10 @@ public class EntityAnswer implements Serializable {
}
if (grouped && answer.applied > 0) {
int start = ssb.length();
ssb.append(" (").append(NF.format(answer.applied)).append(")");
ssb.setSpan(new RelativeSizeSpan(HtmlHelper.FONT_SMALL),
answer.name.length() + 1, ssb.length(), 0);
start, ssb.length(), 0);
}
MenuItem item;