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>2021-01-21 06:04:44 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-01-21 06:05:16 +0300
commiteaf5ee898100cb03244e4f1541909e54fc0a9b8e (patch)
tree72c52d277ae207c1c30b5d59ede6c36ea8fd2613
parentc60c30205d6d2482a1ae04acd10f9bb2c8e98ec2 (diff)
Cleanup: NULL used for boolean
-rw-r--r--source/blender/editors/uvedit/uvedit_select.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/uvedit/uvedit_select.c b/source/blender/editors/uvedit/uvedit_select.c
index c69900678db..32e77ef7347 100644
--- a/source/blender/editors/uvedit/uvedit_select.c
+++ b/source/blender/editors/uvedit/uvedit_select.c
@@ -773,7 +773,7 @@ bool uv_find_nearest_face_ex(
bool uv_find_nearest_face(Scene *scene, Object *obedit, const float co[2], UvNearestHit *hit)
{
- return uv_find_nearest_face_ex(scene, obedit, co, hit, NULL);
+ return uv_find_nearest_face_ex(scene, obedit, co, hit, false);
}
bool uv_find_nearest_face_multi_ex(Scene *scene,