about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAnselm R Garbe <garbeam@gmail.com>2009-08-18 15:59:38 +0100
committerAnselm R Garbe <garbeam@gmail.com>2009-08-18 15:59:38 +0100
commit0a668922a4de625d128a362d102844e33e36ae1c (patch)
tree4df2b1b65609752d4ddee4395acb9876a969f61f
parent57629642321b9850edddf068ac9ddf8737979390 (diff)
downloaddwm-0a668922a4de625d128a362d102844e33e36ae1c.tar.gz
another small optimisation
-rw-r--r--dwm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dwm.c b/dwm.c
index f63a1c0..f7e9e84 100644
--- a/dwm.c
+++ b/dwm.c
@@ -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);
 		}
 	}
 }