commit 55c8d82eb17a3df0d132e403f7f049e6d68be48b from: Aurélien Aptel date: Sun Apr 3 19:03:48 2011 UTC take BORDER into account for selection. (thx Petr Sabata) commit - d679267c46938c8d8e1c8eeff2375ebe487fd963 commit + 55c8d82eb17a3df0d132e403f7f049e6d68be48b blob - d0f2f5e6f1df8c30356c3f9df136c46a33272297 blob + a6fb7668355c2146d996c3352d2c810d93a0fc75 --- st.c +++ st.c @@ -392,8 +392,8 @@ getbuttoninfo(XEvent *e, int *b, int *x, int *y) { if(b) *b = e->xbutton.button; - *x = e->xbutton.x/xw.cw; - *y = e->xbutton.y/xw.ch; + *x = (e->xbutton.x - BORDER)/xw.cw; + *y = (e->xbutton.y - BORDER)/xw.ch; sel.b.x = sel.by < sel.ey ? sel.bx : sel.ex; sel.b.y = MIN(sel.by, sel.ey); sel.e.x = sel.by < sel.ey ? sel.ex : sel.bx; @@ -403,8 +403,8 @@ getbuttoninfo(XEvent *e, int *b, int *x, int *y) { void bpress(XEvent *e) { sel.mode = 1; - sel.ex = sel.bx = e->xbutton.x/xw.cw; - sel.ey = sel.by = e->xbutton.y/xw.ch; + sel.ex = sel.bx = (e->xbutton.x - BORDER)/xw.cw; + sel.ey = sel.by = (e->xbutton.y - BORDER)/xw.ch; } void