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>2018-06-14 10:17:03 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-06-14 10:17:03 +0300
commiteeca206e762e8d71f88352ec279cff60872b0ade (patch)
tree00d9620f710b2c026b44d60136415aa3006b08c4 /source/blender/editors/include/ED_manipulator_library.h
parentb839d67f3eb8f0e032a0e1c4950d9764ddfb0461 (diff)
Cleanup: rename arrow manipulator 'draw_options'
Rename to 'transform' since this controls interaction.
Diffstat (limited to 'source/blender/editors/include/ED_manipulator_library.h')
-rw-r--r--source/blender/editors/include/ED_manipulator_library.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/include/ED_manipulator_library.h b/source/blender/editors/include/ED_manipulator_library.h
index b67af4274a6..e8eeb0f1d7a 100644
--- a/source/blender/editors/include/ED_manipulator_library.h
+++ b/source/blender/editors/include/ED_manipulator_library.h
@@ -75,9 +75,9 @@ enum {
enum {
/* inverted offset during interaction - if set it also sets constrained below */
- ED_MANIPULATOR_ARROW_STYLE_INVERTED = (1 << 3),
+ ED_MANIPULATOR_ARROW_XFORM_FLAG_INVERTED = (1 << 3),
/* clamp arrow interaction to property width */
- ED_MANIPULATOR_ARROW_STYLE_CONSTRAINED = (1 << 4),
+ ED_MANIPULATOR_ARROW_XFORM_FLAG_CONSTRAINED = (1 << 4),
};
void ED_manipulator_arrow3d_set_ui_range(struct wmManipulator *mpr, const float min, const float max);