dwm

my fork of dwm
Index Commits Files Refs README LICENSE
commit dee5ea23358ec0a9684265dc8cb1d2e4d56e9b84
parent b1c9f5f1447846cf75b0184445062b1c30753452
Author: Anselm R. Garbe <arg@suckless.org>
Date:   Fri, 19 Jan 2007 14:36:25 +0100

yet another multihead fix by Christof Musik
Diffstat:
Mevent.c | 2++
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/event.c b/event.c
@@ -235,6 +235,8 @@ enternotify(XEvent *e) {
     else if(ev->window == root) {
         issel = True;
         XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime);
+        if(sel)
+            XSetWindowBorder(dpy, sel->win, dc.sel[ColBorder]);
     }
 }