diff options
author | Christoph Lohmann <20h@r-36.net> | 2012-12-29 16:24:33 +0100 |
---|---|---|
committer | Christoph Lohmann <20h@r-36.net> | 2012-12-29 16:24:33 +0100 |
commit | 08e06ef079e5190c7f219c7e50044745c57cea86 (patch) | |
tree | da576f8e524c9cff73d66e8c61e09d41f691807e /st.c | |
parent | addc84834506e24387c1fb70b5d33b3f2ba55b66 (diff) | |
download | st-08e06ef079e5190c7f219c7e50044745c57cea86.tar.gz st-08e06ef079e5190c7f219c7e50044745c57cea86.tar.bz2 |
Fixing the font unloading in case of zoom.
Diffstat (limited to 'st.c')
-rw-r--r-- | st.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |