JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
Fix smaller than possible resize.
authorMarco Peereboom <marco@conformal.com>
Thu, 29 Jan 2009 22:31:27 +0000 (22:31 +0000)
committerMarco Peereboom <marco@conformal.com>
Thu, 29 Jan 2009 22:31:27 +0000 (22:31 +0000)
scrotwm.c

index 43a0d4d..fbb41b3 100644 (file)
--- a/scrotwm.c
+++ b/scrotwm.c
@@ -1689,6 +1689,10 @@ resize(struct ws_win *win, union arg *args)
                        break;
                case MotionNotify:
                        XSync(display, False);
+                       if (ev.xmotion.x < 0)
+                               ev.xmotion.x = 0;
+                       if (ev.xmotion.y < 0)
+                               ev.xmotion.y = 0;
                        win->g.w = ev.xmotion.x;
                        win->g.h = ev.xmotion.y;
                        resize_window(win);