barriers: Reindent the constrainment hook

This is to make future diffs much cleaner. Best viewed with -w.

Signed-off-by: Jasper St. Pierre <jstpierre@mecheye.net>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
Jasper St. Pierre 2012-12-09 22:48:18 -05:00 committed by Peter Hutterer
parent 97da74c80e
commit 85a37ddcc2

View File

@ -311,13 +311,14 @@ input_constrain_cursor(DeviceIntPtr dev, ScreenPtr screen,
BarrierScreenPtr cs = GetBarrierScreen(screen);
int x = dest_x,
y = dest_y;
if (!xorg_list_is_empty(&cs->barriers) && !IsFloating(dev)) {
int dir;
int i;
struct PointerBarrier *nearest = NULL;
PointerBarrierClientPtr c;
if (xorg_list_is_empty(&cs->barriers) || IsFloating(dev))
goto out;
/* How this works:
* Given the origin and the movement vector, get the nearest barrier
* to the origin that is blocking the movement.
@ -346,8 +347,8 @@ input_constrain_cursor(DeviceIntPtr dev, ScreenPtr screen,
current_y = y;
}
}
}
out:
*out_x = x;
*out_y = y;
}