JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
fix typo
authorConnor Lane Smith <cls@lubutu.com>
Sat, 4 Jun 2011 09:18:54 +0000 (10:18 +0100)
committerConnor Lane Smith <cls@lubutu.com>
Sat, 4 Jun 2011 09:18:54 +0000 (10:18 +0100)
dwm.c

diff --git a/dwm.c b/dwm.c
index 05ab119..780f1fb 100644 (file)
--- a/dwm.c
+++ b/dwm.c
@@ -781,7 +781,7 @@ void
 drawsquare(Bool filled, Bool empty, Bool invert, unsigned long col[ColLast]) {
        int x;
 
 drawsquare(Bool filled, Bool empty, Bool invert, unsigned long col[ColLast]) {
        int x;
 
-       XSetForeground(dpy, dc.gc, col[invert ? ColFG : ColBG]);
+       XSetForeground(dpy, dc.gc, col[invert ? ColBG : ColFG]);
        x = (dc.font.ascent + dc.font.descent + 2) / 4;
        if(filled)
                XFillRectangle(dpy, dc.drawable, dc.gc, dc.x+1, dc.y+1, x+1, x+1);
        x = (dc.font.ascent + dc.font.descent + 2) / 4;
        if(filled)
                XFillRectangle(dpy, dc.drawable, dc.gc, dc.x+1, dc.y+1, x+1, x+1);