all repos — openbox @ 9a5160b88bc92dbfe5cc7e222a576367cea2fc5b

openbox fork - make it a bit more like ryudo

Don't edge-warp with the cursor based on a monitor that does not contain the pointer (Fix bug 4992)
Dana Jansens danakj@orodu.net
commit

9a5160b88bc92dbfe5cc7e222a576367cea2fc5b

parent

d68116c9c9b2c9a9925d872141eff8e301ef3bb3

1 files changed, 4 insertions(+), 0 deletions(-)

jump to
M openbox/moveresize.copenbox/moveresize.c

@@ -630,6 +630,10 @@ dir = -1;

for (i = 0; i < screen_num_monitors; ++i) { const Rect *a = screen_physical_area_monitor(i); + + if (!RECT_CONTAINS(*a, x, y)) + continue; + if (x == RECT_LEFT(*a)) dir = OB_DIRECTION_WEST; if (x == RECT_RIGHT(*a)) dir = OB_DIRECTION_EAST; if (y == RECT_TOP(*a)) dir = OB_DIRECTION_NORTH;