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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-09-06 13:13:01 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-09-06 13:22:09 +0300
commitf1c8c25a3edfbb03795250965ece9d39fef58356 (patch)
treeae04bad082c3939783725482c5c0922ebf42068c /source/blender/editors/include/ED_gizmo_library.h
parent32ef77bf0a995db447ad92d4a01e7ed5afcb5349 (diff)
UI: rename Translate/Grab to Move in UI, shortcuts stay the same.
Diffstat (limited to 'source/blender/editors/include/ED_gizmo_library.h')
-rw-r--r--source/blender/editors/include/ED_gizmo_library.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/source/blender/editors/include/ED_gizmo_library.h b/source/blender/editors/include/ED_gizmo_library.h
index adc6f859111..02c5a80bf62 100644
--- a/source/blender/editors/include/ED_gizmo_library.h
+++ b/source/blender/editors/include/ED_gizmo_library.h
@@ -37,7 +37,7 @@ void ED_gizmotypes_button_2d(void);
void ED_gizmotypes_cage_2d(void);
void ED_gizmotypes_cage_3d(void);
void ED_gizmotypes_dial_3d(void);
-void ED_gizmotypes_grab_3d(void);
+void ED_gizmotypes_move_3d(void);
void ED_gizmotypes_facemap_3d(void);
void ED_gizmotypes_preselect_3d(void);
void ED_gizmotypes_primitive_3d(void);
@@ -189,19 +189,19 @@ enum {
};
/* -------------------------------------------------------------------- */
-/* Grab Gizmo */
+/* Move Gizmo */
/* draw_options */
enum {
- ED_GIZMO_GRAB_DRAW_FLAG_NOP = 0,
+ ED_GIZMO_MOVE_DRAW_FLAG_NOP = 0,
/* only for solid shapes */
- ED_GIZMO_GRAB_DRAW_FLAG_FILL = (1 << 0),
- ED_GIZMO_GRAB_DRAW_FLAG_ALIGN_VIEW = (1 << 1),
+ ED_GIZMO_MOVE_DRAW_FLAG_FILL = (1 << 0),
+ ED_GIZMO_MOVE_DRAW_FLAG_ALIGN_VIEW = (1 << 1),
};
enum {
- ED_GIZMO_GRAB_STYLE_RING_2D = 0,
- ED_GIZMO_GRAB_STYLE_CROSS_2D = 1,
+ ED_GIZMO_MOVE_STYLE_RING_2D = 0,
+ ED_GIZMO_MOVE_STYLE_CROSS_2D = 1,
};
/* -------------------------------------------------------------------- */