Unverified Commit 16cae1d2 authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

gib_imlib: try falling back to yudit rather than fixed

parent 1443b22c
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -706,10 +706,10 @@ gib_imlib_load_font(char *name)

   if ((fn = imlib_load_font(name)))
      return fn;
   weprintf("couldn't load font %s, attempting to fall back to fixed.", name);
   if ((fn = imlib_load_font("fixed")))
   weprintf("couldn't load font %s, attempting to fall back to yudit.", name);
   if ((fn = imlib_load_font("yudit/12")))
      return fn;
   weprintf("failed to even load fixed! Attempting to find any font.");
   weprintf("failed to even load yudit! Attempting to find any font.");
   return imlib_load_font("*");
}