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>2017-03-08 15:10:31 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-03-08 15:23:39 +0300
commit6f3f891c58fd1f471d8b18dac600a68141ccdd57 (patch)
tree7103f83a44153b2519f1bd8e06481855cd31522b /source/blender/editors/space_view3d/view3d_view.c
parent75cb4850f098cb5a1306d661477f67bca3dcd4b0 (diff)
Rename BLI_rct*_init_pt_size -> radius
Diffstat (limited to 'source/blender/editors/space_view3d/view3d_view.c')
-rw-r--r--source/blender/editors/space_view3d/view3d_view.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_view3d/view3d_view.c b/source/blender/editors/space_view3d/view3d_view.c
index 683fbc4185a..85d2d9a92d7 100644
--- a/source/blender/editors/space_view3d/view3d_view.c
+++ b/source/blender/editors/space_view3d/view3d_view.c
@@ -1185,7 +1185,7 @@ short view3d_opengl_select(ViewContext *vc, unsigned int *buffer, unsigned int b
/* case not a border select */
if (input->xmin == input->xmax) {
/* seems to be default value for bones only now */
- BLI_rctf_init_pt_size(&rect, (const float[2]){input->xmin, input->ymin}, 12);
+ BLI_rctf_init_pt_radius(&rect, (const float[2]){input->xmin, input->ymin}, 12);
}
else {
BLI_rctf_rcti_copy(&rect, input);