all repos — dwm @ 1d852259526e41ebaad7325ee42c118b1cc12f71

my dwm build

implemented focus on enterwindow on titlebars
arg@10ksloc.org unknown
Wed, 02 Aug 2006 11:28:27 +0200
commit

1d852259526e41ebaad7325ee42c118b1cc12f71

parent

3af6434085aee75bd90e22aee95419dc0ae0b969

2 files changed, 2 insertions(+), 2 deletions(-)

jump to
M client.cclient.c

@@ -230,7 +230,7 @@ StructureNotifyMask | PropertyChangeMask | EnterWindowMask);

XGetTransientForHint(dpy, c->win, &trans); twa.override_redirect = 1; twa.background_pixmap = ParentRelative; - twa.event_mask = ExposureMask; + twa.event_mask = ExposureMask | EnterWindowMask; c->title = XCreateWindow(dpy, root, c->tx, c->ty, c->tw, c->th, 0, DefaultDepth(dpy, screen), CopyFromParent,
M event.cevent.c

@@ -202,7 +202,7 @@

if(ev->detail == NotifyInferior) return; - if((c = getclient(ev->window))) + if((c = getclient(ev->window)) || (c = getctitle(ev->window))) focus(c); else if(ev->window == root) issel = True;