aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorConnor Lane Smith <cls@lubutu.com>2011-06-04 11:18:54 +0200
committerConnor Lane Smith <cls@lubutu.com>2011-06-04 11:18:54 +0200
commit8a111c181ea7c14fa3903bebccd3e1cc00e1fe31 (patch)
tree6f67d16e86a7bd31af48707ed5d8a5cd70fa538f
parent2255bf46a0af475e70fb4cc90d912b435f21eb5e (diff)
downloaddwm-8a111c181ea7c14fa3903bebccd3e1cc00e1fe31.tar.zst
fix typo
-rw-r--r--dwm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dwm.c b/dwm.c
index 05ab119..780f1fb 100644
--- a/dwm.c
+++ b/dwm.c
@@ -781,7 +781,7 @@ void
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);