From 3a50a4fd931ed58454b680c9fc5c1bc2278e67f3 Mon Sep 17 00:00:00 2001 From: Aurélien Aptel Date: Wed, 13 Oct 2010 00:50:18 +0200 Subject: [PATCH] clean button selection code. --- st.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/st.c b/st.c index d1b90ef..5d5ac30 100644 --- a/st.c +++ b/st.c @@ -243,8 +243,9 @@ static inline int selected(int x, int y) { } static void getbuttoninfo(XEvent *e, int *b, int *x, int *y) { - if(b) *b = e->xbutton.state, - *b=*b==4096?5:*b==2048?4:*b==1024?3:*b==512?2:*b==256?1:-1; + if(b) + *b = e->xbutton.button; + *x = e->xbutton.x/xw.cw; *y = e->xbutton.y/xw.ch; sel.b.x = sel.by < sel.ey ? sel.bx : sel.ex; -- libgit2 1.1.1