config: change default font size from 8 to 12

This commit is contained in:
qaqland 2026-04-05 15:14:19 +08:00
parent 037a2f4fa2
commit fd63c19d40
3 changed files with 4 additions and 4 deletions

View file

@ -4108,7 +4108,7 @@ config_font_parse(const char *pattern, struct config_font *font)
FcConfigDestroy(fc_conf);
if (have_pt_size != FcResultMatch && have_px_size != FcResultMatch)
pt_size = 8.0;
pt_size = 12.0;
}
FcPatternRemove(pat, FC_SIZE, 0);
@ -4148,7 +4148,7 @@ check_if_font_is_monospaced(const char *pattern,
user_notifications_t *notifications)
{
struct fcft_font *f = fcft_from_name(
1, (const char *[]){pattern}, ":size=8");
1, (const char *[]){pattern}, ":size=12");
if (f == NULL)
return true;