all repos — dwm @ dd46d5b588dc5d33940bde87817f3e8d608788d4

my dwm build

applied Hiltjo's multimon mouse-based resize fix
Anselm R Garbe anselm@garbe.us
Wed, 23 Mar 2011 08:58:57 +0000
commit

dd46d5b588dc5d33940bde87817f3e8d608788d4

parent

0bc4e41ebdf4dfbdb4e865ab5297f5df4f0d9e16

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

jump to
M dwm.cdwm.c

@@ -1365,8 +1365,8 @@ break;

case MotionNotify: nw = MAX(ev.xmotion.x - ocx - 2 * c->bw + 1, 1); nh = MAX(ev.xmotion.y - ocy - 2 * c->bw + 1, 1); - if(snap && nw >= selmon->wx && nw <= selmon->wx + selmon->ww - && nh >= selmon->wy && nh <= selmon->wy + selmon->wh) + if(snap && c->mon->wx + nw >= selmon->wx && c->mon->wx + nw <= selmon->wx + selmon->ww + && c->mon->wy + nh >= selmon->wy && c->mon->wy + nh <= selmon->wy + selmon->wh) { if(!c->isfloating && selmon->lt[selmon->sellt]->arrange && (abs(nw - c->w) > snap || abs(nh - c->h) > snap))