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>2019-05-28 18:03:26 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-05-28 18:05:22 +0300
commit916c2d0e7f31c71082fdadbe35d809c0802b4063 (patch)
tree7abda5f23441caefe8ba75f7d752d471970f317d /source/blender/windowmanager/gizmo/intern/wm_gizmo_map.c
parente4ac8ab212769b569334d0cd15d4bf04f42cbc89 (diff)
Cleanup: use WM_ prefix for cursor enum
Diffstat (limited to 'source/blender/windowmanager/gizmo/intern/wm_gizmo_map.c')
-rw-r--r--source/blender/windowmanager/gizmo/intern/wm_gizmo_map.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/windowmanager/gizmo/intern/wm_gizmo_map.c b/source/blender/windowmanager/gizmo/intern/wm_gizmo_map.c
index ba9d59e82d6..73fae5fd46a 100644
--- a/source/blender/windowmanager/gizmo/intern/wm_gizmo_map.c
+++ b/source/blender/windowmanager/gizmo/intern/wm_gizmo_map.c
@@ -1038,7 +1038,7 @@ void wm_gizmomap_modal_set(
gzmap->gzmap_context.modal = gz;
if ((gz->flag & WM_GIZMO_MOVE_CURSOR) && (event->is_motion_absolute == false)) {
- WM_cursor_grab_enable(win, CURSOR_WRAP_XY, true, NULL);
+ WM_cursor_grab_enable(win, WM_CURSOR_WRAP_XY, true, NULL);
copy_v2_v2_int(gzmap->gzmap_context.event_xy, &event->x);
gzmap->gzmap_context.event_grabcursor = win->grabcursor;
}