mirror of
https://github.com/leahneukirchen/cwm.git
synced 2023-08-10 21:13:12 +03:00
in MotionNotify geom.x, geom.y calculations take into account bwidth.
fixes the annoying bug where windows would go +bwidth pixels right, +bwidth pixels down. ok okan@
This commit is contained in:
parent
111a88129d
commit
cd23316a72
@ -157,8 +157,8 @@ mousefunc_window_move(struct client_ctx *cc, void *arg)
|
|||||||
client_draw_border(cc);
|
client_draw_border(cc);
|
||||||
break;
|
break;
|
||||||
case MotionNotify:
|
case MotionNotify:
|
||||||
cc->geom.x = ev.xmotion.x_root - px;
|
cc->geom.x = ev.xmotion.x_root - px - cc->bwidth;
|
||||||
cc->geom.y = ev.xmotion.y_root - py;
|
cc->geom.y = ev.xmotion.y_root - py - cc->bwidth;
|
||||||
|
|
||||||
/* don't sync more than 60 times / second */
|
/* don't sync more than 60 times / second */
|
||||||
if ((ev.xmotion.time - time) > (1000 / 60)) {
|
if ((ev.xmotion.time - time) > (1000 / 60)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user