Fixing bold fonts in reverse mode. - st - Personal fork of st
 (HTM) git clone git://git.drkhsh.at/st.git
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit f8db65439a705f5e94c7a130ac44689e050e5654
 (DIR) parent 76a8e5f72b542f230d7248c09efe202a12bc3771
 (HTM) Author: Christoph Lohmann <20h@r-36.net>
       Date:   Sat,  3 Nov 2012 13:43:20 +0100
       
       Fixing bold fonts in reverse mode.
       
       Diffstat:
         M st.c                                |       6 +++---
       
       1 file changed, 3 insertions(+), 3 deletions(-)
       ---
 (DIR) 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;