From 08e06ef079e5190c7f219c7e50044745c57cea86 Mon Sep 17 00:00:00 2001 From: Christoph Lohmann <20h@r-36.net> Date: Sat, 29 Dec 2012 16:24:33 +0100 Subject: [PATCH] Fixing the font unloading in case of zoom. --- st.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/st.c b/st.c index cc8a22a..6dcf0c7 100644 --- a/st.c +++ b/st.c @@ -2406,7 +2406,7 @@ xunloadfonts(void) * from the frccur. */ for (i = 0, ip = frccur; i < frclen; i++, ip--) { - if (ip <= 0) + if (ip < 0) ip = LEN(frc) - 1; XftFontClose(xw.dpy, frc[ip].font); } -- libgit2 1.1.1