X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?p=xscreensaver;a=blobdiff_plain;f=hacks%2Fxsublim.c;fp=hacks%2Fxsublim.c;h=719de50c8bb7641e60bb075d2b08941370ac633f;hp=d60fc0dcec009883c9a23df5000b59b8c08be919;hb=78add6e627ee5f10e1fa6f3852602ea5066eee5a;hpb=39809ded547bdbb08207d3e514950425215b4410 diff --git a/hacks/xsublim.c b/hacks/xsublim.c index d60fc0dc..719de50c 100644 --- a/hacks/xsublim.c +++ b/hacks/xsublim.c @@ -107,6 +107,7 @@ #include "usleep.h" #include "yarandom.h" #include "resources.h" +#include "font-retry.h" #include "vroot.h" @@ -555,12 +556,12 @@ int main(int argc,char* argv[]) } /* Load the font */ - font_Font = XLoadQueryFont(dpy, + font_Font = load_font_retry(dpy, get_string_resource(dpy, XSUBLIM_ARG_FONT,"Font")); font_Index = 0; while ((font_Font == NULL) && (font_List[font_Index] != NULL)) { - font_Font = XLoadQueryFont(dpy,font_List[font_Index]); + font_Font = load_font_retry(dpy,font_List[font_Index]); font_Index++; } if (font_Font == NULL)