diff options
| author | Dana Jansens <danakj@orodu.net> | 2012-09-30 17:08:05 -0400 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2012-10-06 21:56:56 -0400 |
| commit | 9a5160b88bc92dbfe5cc7e222a576367cea2fc5b (patch) | |
| tree | b9d2ac1940b0b2669c77cd18ddaa0c9e29fdbd33 /openbox/moveresize.c | |
| parent | d68116c9c9b2c9a9925d872141eff8e301ef3bb3 (diff) | |
Don't edge-warp with the cursor based on a monitor that does not contain the pointer (Fix bug 4992)
Diffstat (limited to 'openbox/moveresize.c')
| -rw-r--r-- | openbox/moveresize.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/openbox/moveresize.c b/openbox/moveresize.c index 3a98db37..1625ccf0 100644 --- a/openbox/moveresize.c +++ b/openbox/moveresize.c @@ -630,6 +630,10 @@ static void do_edge_warp(gint x, gint y) 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; |
