st

fork of suckless's simple terminal
Index Commits Files Refs README LICENSE
commit f8db65439a705f5e94c7a130ac44689e050e5654
parent 76a8e5f72b542f230d7248c09efe202a12bc3771
Author: Christoph Lohmann <20h@r-36.net>
Date:   Sat,  3 Nov 2012 13:43:20 +0100

Fixing bold fonts in reverse mode.

Diffstat:
Mst.c | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/st.c b/st.c
@@ -2398,9 +2398,6 @@ xdraws(char *s, Glyph base, int x, int y, int charlen, int bytelen) {
          *temp, revfg, revbg;
     XRenderColor colfg, colbg;
 
-    if(base.mode & ATTR_REVERSE)
-        temp = fg, fg = bg, bg = temp;
-
     if(base.mode & ATTR_BOLD) {
         if(BETWEEN(base.fg, 0, 7)) {
             /* basic system colors */
@@ -2450,6 +2447,9 @@ xdraws(char *s, Glyph base, int x, int y, int charlen, int bytelen) {
         }
     }
 
+    if(base.mode & ATTR_REVERSE)
+        temp = fg, fg = bg, bg = temp;
+
     XftTextExtentsUtf8(xw.dpy, font->xft_set, (FcChar8 *)s, bytelen,
             &extents);
     width = extents.xOff;