X-Git-Url: https://jasonwoof.com/gitweb/?p=dwm.git;a=blobdiff_plain;f=draw.c;h=2a45cff1100ea8471555435171785da9c3bc9443;hp=58f3998198308d5699987633515cf87b43d93f61;hb=399993c6b5d594278bf822e2981ebfe8bfcb58c7;hpb=587100873a66e34251041678504a8c1e28410591 diff --git a/draw.c b/draw.c index 58f3998..2a45cff 100644 --- a/draw.c +++ b/draw.c @@ -1,6 +1,5 @@ -/* (C)opyright MMVI-MMVII Anselm R. Garbe - * See LICENSE file for license details. - */ +/* © 2004-2007 Anselm R. Garbe + * See LICENSE file for license details. */ #include "dwm.h" #include @@ -81,7 +80,7 @@ drawstatus(void) { dc.x = x; if(sel) { drawtext(sel->name, dc.sel); - drawsquare(sel->ismax, sel->isuntiled, dc.sel); + drawsquare(sel->ismax, sel->isfloating, dc.sel); } else drawtext(NULL, dc.norm); @@ -95,7 +94,6 @@ drawtext(const char *text, unsigned long col[ColLast]) { int x, y, w, h; static char buf[256]; unsigned int len, olen; - XGCValues gcv; XRectangle r = { dc.x, dc.y, dc.w, dc.h }; XSetForeground(dpy, dc.gc, col[ColBG]); @@ -124,16 +122,11 @@ drawtext(const char *text, unsigned long col[ColLast]) { } if(w > dc.w) return; /* too long */ - gcv.foreground = col[ColFG]; - if(dc.font.set) { - XChangeGC(dpy, dc.gc, GCForeground, &gcv); + XSetForeground(dpy, dc.gc, col[ColFG]); + if(dc.font.set) XmbDrawString(dpy, dc.drawable, dc.font.set, dc.gc, x, y, buf, len); - } - else { - gcv.font = dc.font.xfont->fid; - XChangeGC(dpy, dc.gc, GCForeground | GCFont, &gcv); + else XDrawString(dpy, dc.drawable, dc.gc, x, y, buf, len); - } } unsigned int