all repos — dwm @ fde45ebed844c227a17c21d161f60aa55c8b3c41

my dwm build

applied sumik's multihead patch
Anselm R.Garbe arg@10ksloc.org
Thu, 10 Aug 2006 11:26:32 +0200
commit

fde45ebed844c227a17c21d161f60aa55c8b3c41

parent

4bd0d33f57c6fb764ef546a9b0ebfcd20ff1df70

3 files changed, 13 insertions(+), 6 deletions(-)

jump to
M client.cclient.c

@@ -49,6 +49,8 @@

void focus(Client *c) { + if (!issel) + return; Client *old = sel; XEvent ev;
M draw.cdraw.c

@@ -138,7 +138,7 @@ {

int i; Bool istile = arrange == dotile; - if(c == sel) { + if(c == sel && issel) { drawstatus(); XUnmapWindow(dpy, c->title); XSetWindowBorder(dpy, c->win, dc.fg);
M event.cevent.c

@@ -114,10 +114,10 @@ }

} break; case Button4: - viewnext(&a); + viewprev(&a); break; case Button5: - viewprev(&a); + viewnext(&a); break; } }

@@ -226,8 +226,11 @@ return;

if((c = getclient(ev->window)) || (c = getctitle(ev->window))) focus(c); - else if(ev->window == root) + else if(ev->window == root) { issel = True; + XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime); + drawall(); + } } static void

@@ -267,8 +270,10 @@ leavenotify(XEvent *e)

{ XCrossingEvent *ev = &e->xcrossing; - if((ev->window == root) && !ev->same_screen) - issel = True; + if((ev->window == root) && !ev->same_screen) { + issel = False; + drawall(); + } } static void