diff options
author | Anselm R Garbe <garbeam@gmail.com> | 2009-08-18 15:59:38 +0100 |
---|---|---|
committer | Anselm R Garbe <garbeam@gmail.com> | 2009-08-18 15:59:38 +0100 |
commit | 0a668922a4de625d128a362d102844e33e36ae1c (patch) | |
tree | 4df2b1b65609752d4ddee4395acb9876a969f61f /dwm.c | |
parent | 57629642321b9850edddf068ac9ddf8737979390 (diff) | |
download | dwm-0a668922a4de625d128a362d102844e33e36ae1c.tar dwm-0a668922a4de625d128a362d102844e33e36ae1c.tar.gz dwm-0a668922a4de625d128a362d102844e33e36ae1c.tar.bz2 |
another small optimisation
Diffstat (limited to 'dwm.c')
-rw-r--r-- | dwm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1236,7 +1236,7 @@ propertynotify(XEvent *e) { if(ev->atom == XA_WM_NAME || ev->atom == netatom[NetWMName]) { updatetitle(c); if(c == c->mon->sel) - drawbars(); + drawbar(c->mon); } } } |