Fixed setting default font

This commit is contained in:
M66B 2022-09-01 08:00:18 +02:00
parent 1353013f65
commit 80fadbc8be
1 changed files with 2 additions and 1 deletions

View File

@ -198,7 +198,8 @@ public class StyleHelper {
smenu.add(font.custom ? R.id.group_style_font_custom : R.id.group_style_font_standard, i, 0, ssb)
.setIntent(new Intent().putExtra("face", font.type));
}
smenu.add(R.id.group_style_font_standard, fonts.size(), 0, R.string.title_style_font_default);
smenu.add(R.id.group_style_font_standard, fonts.size(), 0, R.string.title_style_font_default)
.setIntent(new Intent());
int level = -1;
BulletSpan[] spans = edit.getSpans(start, end, BulletSpan.class);