diff options
author | Marvin Borner | 2020-09-12 11:43:14 +0200 |
---|---|---|
committer | Marvin Borner | 2020-09-12 11:46:17 +0200 |
commit | 27337731330ec60e2f7f4abdcd4ed5ef7b8b4882 (patch) | |
tree | 3f73d698d5e4a1dbd71cb9f0719692fdd0683192 /apps | |
parent | e37e7eefcb0148651331d6a750846f26ecf11126 (diff) |
Fixed window move y overflow
Diffstat (limited to 'apps')
-rw-r--r-- | apps/wm.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -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; |