Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-02-10 10:50:16 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-10 10:50:16 +0400
commit2dda20a96e6b5f54d195a23d661db23d4596b415 (patch)
tree3f657336cbc72c462da43a7fc857987db999773b /source/blender/editors/uvedit/uvedit_draw.c
parent3aeb7b3150053db9b10abc6ac3f65fbca020f35e (diff)
Style Edits only: use TRUE/FALSE rather then 1/0
Diffstat (limited to 'source/blender/editors/uvedit/uvedit_draw.c')
-rw-r--r--source/blender/editors/uvedit/uvedit_draw.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/uvedit/uvedit_draw.c b/source/blender/editors/uvedit/uvedit_draw.c
index b081941e71b..41fe8ad7275 100644
--- a/source/blender/editors/uvedit/uvedit_draw.c
+++ b/source/blender/editors/uvedit/uvedit_draw.c
@@ -517,8 +517,8 @@ static void draw_uvs(SpaceImage *sima, Scene *scene, Object *obedit)
#endif
em= me->edit_btmesh;
- activetf= EDBM_get_active_mtexpoly(em, &efa_act, 0); /* will be set to NULL if hidden */
- activef = BM_get_actFace(em->bm, 0);
+ activetf= EDBM_get_active_mtexpoly(em, &efa_act, FALSE); /* will be set to NULL if hidden */
+ activef = BM_get_actFace(em->bm, FALSE);
ts= scene->toolsettings;
drawfaces= draw_uvs_face_check(scene);