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-11-11 07:00:20 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-11-11 07:00:20 +0300
commit9787b46f09d25c1db7cc45440ec47a189de7a13a (patch)
treef26e6c3c61aa598febd43f350b6db0e630dda870
parent03f0be35d6a8b783756ba42a11a23d2c6d0bcec3 (diff)
parentddf0bacaa9ce4019af6d838836a80f237e45d282 (diff)
Merge branch 'blender-v3.0-release'
-rw-r--r--source/blender/editors/space_view3d/view3d_cursor_snap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/space_view3d/view3d_cursor_snap.c b/source/blender/editors/space_view3d/view3d_cursor_snap.c
index bb387adb82e..1213614704d 100644
--- a/source/blender/editors/space_view3d/view3d_cursor_snap.c
+++ b/source/blender/editors/space_view3d/view3d_cursor_snap.c
@@ -759,7 +759,7 @@ static void v3d_cursor_snap_update(V3DSnapCursorState *state,
/** \name Callbacks
* \{ */
-static bool v3d_cursor_snap_pool_fn(bContext *C)
+static bool v3d_cursor_snap_poll_fn(bContext *C)
{
if (G.moving) {
return false;
@@ -898,7 +898,7 @@ static void v3d_cursor_snap_activate(void)
}
struct wmPaintCursor *pc = WM_paint_cursor_activate(
- SPACE_VIEW3D, RGN_TYPE_WINDOW, v3d_cursor_snap_pool_fn, v3d_cursor_snap_draw_fn, NULL);
+ SPACE_VIEW3D, RGN_TYPE_WINDOW, v3d_cursor_snap_poll_fn, v3d_cursor_snap_draw_fn, NULL);
data_intern->handle = pc;
}
}