commit 0c4d46e62f629033566b8cfcc3d05de2c87051ad
parent 7185da87dd38434ccdbf883969e3255f0de2e302
Author: Kris Maglione <jg@suckless.org>
Date: Fri, 9 Feb 2007 00:08:07 -0500
Sorry, fixed error in previous commit.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/event.c b/event.c
@@ -64,7 +64,7 @@ buttonpress(XEvent *e) {
}
}else{
if(ev->button == Button1) {
- if(frame_to_top(f) || f->client != sel_client)
+ if(frame_to_top(f) || f->client != sel_client())
focus(f->client, True);
if(ispointinrect(ev->x, ev->y, &f->titlebar.rect)
||ispointinrect(ev->x, ev->y, &f->grabbox.rect))