Actually make load_font only fallback if 'fallback' is true

next
Michael Stapelberg 2011-10-23 22:02:11 +01:00
parent 29f9f8c090
commit 8da6049ca9
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ i3Font load_font(const char *pattern, bool fallback) {
xcb_generic_error_t *error = xcb_request_check(conn, font_cookie);
/* If we fail to open font, fall back to 'fixed'. If opening 'fixed' fails fall back to '-misc-*' */
if (error != NULL) {
if (fallback && error != NULL) {
ELOG("Could not open font %s (X error %d). Reverting to backup font.\n", pattern, error->error_code);
pattern = "fixed";
font_cookie = xcb_open_font_checked(conn, new.id, strlen(pattern), pattern);