aboutsummaryrefslogtreecommitdiffstats
path: root/commands.c
diff options
context:
space:
mode:
Diffstat (limited to 'commands.c')
-rw-r--r--commands.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/commands.c b/commands.c
index 09ba926..ff95f36 100644
--- a/commands.c
+++ b/commands.c
@@ -352,14 +352,14 @@ bool i_drag(arg_t a)
y = e.xmotion.y;
/* wrap the mouse around */
- if (x < 0) {
- WARP(win.w, y);
- } else if (x > win.w) {
- WARP(0, y);
- } else if (y < 0) {
- WARP(x, win.h);
- } else if (y > win.h) {
- WARP(x, 0);
+ if (x <= 0) {
+ WARP(win.w - 2, y);
+ } else if (x >= win.w - 1) {
+ WARP(1, y);
+ } else if (y <= 0) {
+ WARP(x, win.h - 2);
+ } else if (y >= win.h - 1) {
+ WARP(x, 1);
}
dx += x - ox;
dy += y - oy;