diff options
author | Anselm R. Garbe <garbeam@gmail.com> | 2007-08-13 19:13:54 +0200 |
---|---|---|
committer | Anselm R. Garbe <garbeam@gmail.com> | 2007-08-13 19:13:54 +0200 |
commit | 77044e876511f51c34bde379d89e2de754707ee6 (patch) | |
tree | 6626665e0d57068c2d6ddbb3669534f2afb4e159 /draw.c | |
parent | 2feb3afe784cbd9d900bd70aad91431a4b25f2ab (diff) | |
download | dwm-77044e876511f51c34bde379d89e2de754707ee6.tar.gz |
made Layout a static struct in layout.c, added some convenience getters in layout.c, now lt->arrange accesses are not possible anymore, arrange() is the super-arrange function which sets up all layouts
Diffstat (limited to 'draw.c')
-rw-r--r-- | draw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/draw.c b/draw.c index 16bf805..ced0dfd 100644 --- a/draw.c +++ b/draw.c @@ -66,7 +66,7 @@ drawstatus(void) { dc.x += dc.w; } dc.w = blw; - drawtext(lt->symbol, dc.norm); + drawtext(getsymbol(), dc.norm); x = dc.x + dc.w; dc.w = textw(stext); dc.x = sw - dc.w; |