diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-04-20 23:07:23 +0200 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-04-20 23:07:23 +0200 |
commit | a0151cbc86166731465b963ea3addb04d866baae (patch) | |
tree | 37a1b3249e3a35df22113c25010a626e4941f511 /src/prefs.c | |
parent | 3f8cf3b42136d9c077987ca6f887b44179f94f18 (diff) |
Use DejaVu Sans for cursive by default
The URW Chancery L font is not likely to be installed, so by default we
use the same as for serif and sans, DejaVu.
Fixes: https://github.com/dillo-browser/dillo/issues/138
Diffstat (limited to 'src/prefs.c')
-rw-r--r-- | src/prefs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/prefs.c b/src/prefs.c index 8cac23a9..72a7568e 100644 --- a/src/prefs.c +++ b/src/prefs.c @@ -16,7 +16,7 @@ #define PREFS_HOME "https://dillo-browser.github.io/" #define PREFS_FONT_SERIF "DejaVu Serif" #define PREFS_FONT_SANS_SERIF "DejaVu Sans" -#define PREFS_FONT_CURSIVE "URW Chancery L" +#define PREFS_FONT_CURSIVE "DejaVu Sans" #define PREFS_FONT_FANTASY "DejaVu Sans" /* TODO: find good default */ #define PREFS_FONT_MONOSPACE "DejaVu Sans Mono" #define PREFS_SEARCH_URL "dd http://duckduckgo.com/lite/?kp=-1&kd=-1&q=%s" |