From 5e0f254afa8caed1febbe02130cc313a53149efe Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 8 Aug 2012 20:38:55 +0000 Subject: utility functions for getting/setting rectangles for operators. --- source/blender/editors/transform/transform.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/editors/transform') diff --git a/source/blender/editors/transform/transform.c b/source/blender/editors/transform/transform.c index 0b23b65f250..f88d4becc74 100644 --- a/source/blender/editors/transform/transform.c +++ b/source/blender/editors/transform/transform.c @@ -2937,7 +2937,7 @@ int Resize(TransInfo *t, const int mval[2]) /* vertices in the radius of the brush end */ /* outside the clipping area */ /* XXX HACK - dg */ - if(t->flag & (T_PROP_EDIT | T_PROP_CONNECTED)) { + if (t->flag & (T_PROP_EDIT | T_PROP_CONNECTED)) { clipUVData(t); } } @@ -3802,7 +3802,7 @@ int Translation(TransInfo *t, const int UNUSED(mval[2])) /* vertices in the radius of the brush end */ /* outside the clipping area */ /* XXX HACK - dg */ - if(t->flag & (T_PROP_EDIT | T_PROP_CONNECTED)) { + if (t->flag & (T_PROP_EDIT | T_PROP_CONNECTED)) { clipUVData(t); } } -- cgit v1.2.3