grabsx/y are only used by move now

This commit is contained in:
Devin J. Pohly 2020-04-22 12:00:10 -05:00
parent 749880cedd
commit 0a43197203
1 changed files with 0 additions and 5 deletions

5
dwl.c
View File

@ -643,14 +643,9 @@ moveresize(Client *c, unsigned int mode)
* consumes them itself, to move or resize windows. */ * consumes them itself, to move or resize windows. */
grabbed_client = c; grabbed_client = c;
cursor_mode = mode; cursor_mode = mode;
struct wlr_box sbox;
wlr_xdg_surface_get_geometry(c->xdg_surface, &sbox);
if (mode == CurMove) { if (mode == CurMove) {
grabsx = cursor->x - c->x; grabsx = cursor->x - c->x;
grabsy = cursor->y - c->y; grabsy = cursor->y - c->y;
} else {
grabsx = cursor->x + sbox.x;
grabsy = cursor->y + sbox.y;
} }
} }