diff options
Diffstat (limited to 'src/prefs.c')
-rw-r--r-- | src/prefs.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/prefs.c b/src/prefs.c index 6167085c..3fd1d0ec 100644 --- a/src/prefs.c +++ b/src/prefs.c @@ -163,6 +163,7 @@ static int Prefs_parse_dillorc(void) { "font_cursive", &prefs.font_cursive, PREFS_STRING }, { "font_factor", &prefs.font_factor, PREFS_DOUBLE }, { "font_fantasy", &prefs.font_fantasy, PREFS_STRING }, + { "font_max_size", &prefs.font_max_size, PREFS_INT32 }, { "font_min_size", &prefs.font_min_size, PREFS_INT32 }, { "font_monospace", &prefs.font_monospace, PREFS_STRING }, { "font_sans_serif", &prefs.font_sans_serif, PREFS_STRING }, @@ -268,6 +269,7 @@ void a_Prefs_init(void) prefs.focus_new_tab = TRUE; prefs.font_cursive = dStrdup(D_FONT_CURSIVE); prefs.font_factor = 1.0; + prefs.font_max_size = 100; prefs.font_min_size = 6; prefs.font_fantasy = dStrdup(D_FONT_FANTASY); prefs.font_monospace = dStrdup(D_FONT_MONOSPACE); |