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/WM_types.h
parente4ac8ab212769b569334d0cd15d4bf04f42cbc89 (diff)
Cleanup: use WM_ prefix for cursor enum
Diffstat (limited to 'source/blender/windowmanager/WM_types.h')
-rw-r--r--source/blender/windowmanager/WM_types.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/windowmanager/WM_types.h b/source/blender/windowmanager/WM_types.h
index 00c43450de7..e6e7b7d1577 100644
--- a/source/blender/windowmanager/WM_types.h
+++ b/source/blender/windowmanager/WM_types.h
@@ -162,12 +162,12 @@ enum {
(1 << 11), /* Need evaluated data (i.e. a valid, up-to-date depsgraph for current context) */
};
-/* Wrap Axis. */
+/** For #WM_cursor_grab_enable wrap axis. */
enum {
- CURSOR_WRAP_NONE = 0,
- CURSOR_WRAP_X,
- CURSOR_WRAP_Y,
- CURSOR_WRAP_XY,
+ WM_CURSOR_WRAP_NONE = 0,
+ WM_CURSOR_WRAP_X,
+ WM_CURSOR_WRAP_Y,
+ WM_CURSOR_WRAP_XY,
};
/* context to call operator in for WM_operator_name_call */