From 27337731330ec60e2f7f4abdcd4ed5ef7b8b4882 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 12 Sep 2020 11:43:14 +0200 Subject: Fixed window move y overflow --- apps/wm.c | 1 - 1 file changed, 1 deletion(-) (limited to 'apps') diff --git a/apps/wm.c b/apps/wm.c index 0988538..2df2e51 100644 --- a/apps/wm.c +++ b/apps/wm.c @@ -124,7 +124,6 @@ int main(int argc, char **argv) cursor->y = mouse_y; if (event->but1 && !(focused->flags & WF_NO_DRAG) && - mouse_y + (int)focused->height < vbe->height - 1 && mouse_skip % MOUSE_SKIP == 0) { mouse_skip = 0; focused->x = mouse_x; -- cgit v1.2.3