aboutsummaryrefslogtreecommitdiff
path: root/st.c
diff options
context:
space:
mode:
authorAurélien Aptel <aurelien.aptel@gmail.com>2010-10-13 00:50:18 +0200
committerAurélien Aptel <aurelien.aptel@gmail.com>2010-10-13 00:50:18 +0200
commit3a50a4fd931ed58454b680c9fc5c1bc2278e67f3 (patch)
treeda6ea67d14f4f3d0bf3b29dbdd14fbbb36f3ddda /st.c
parent3470e3af23f4b98ce4293f6090c8df59a08329d9 (diff)
downloadst-3a50a4fd931ed58454b680c9fc5c1bc2278e67f3.tar.gz
st-3a50a4fd931ed58454b680c9fc5c1bc2278e67f3.zip
clean button selection code.
Diffstat (limited to 'st.c')
-rw-r--r--st.c5
1 files 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) {
243} 243}
244 244
245static void getbuttoninfo(XEvent *e, int *b, int *x, int *y) { 245static void getbuttoninfo(XEvent *e, int *b, int *x, int *y) {
246 if(b) *b = e->xbutton.state, 246 if(b)
247 *b=*b==4096?5:*b==2048?4:*b==1024?3:*b==512?2:*b==256?1:-1; 247 *b = e->xbutton.button;
248
248 *x = e->xbutton.x/xw.cw; 249 *x = e->xbutton.x/xw.cw;
249 *y = e->xbutton.y/xw.ch; 250 *y = e->xbutton.y/xw.ch;
250 sel.b.x = sel.by < sel.ey ? sel.bx : sel.ex; 251 sel.b.x = sel.by < sel.ey ? sel.bx : sel.ex;