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-04-28 10:14:02 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-04-28 10:14:02 +0300
commit159a7e8b380a4d3fdea93fa87969da2ac9d18ab2 (patch)
tree3a3fba8f4d9f7a01e3fd94f92da18e9b0bb7755a /source/blender/editors/manipulator_library
parent617534327ad48583b2688997f59a998824df20af (diff)
UI: replace transform hand icon w/ 4 arrows
The hand doesn't have a hotspot which you might want using manipulators
Diffstat (limited to 'source/blender/editors/manipulator_library')
-rw-r--r--source/blender/editors/manipulator_library/manipulator_types/cage2d_manipulator.c2
-rw-r--r--source/blender/editors/manipulator_library/manipulator_types/grab3d_manipulator.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/manipulator_library/manipulator_types/cage2d_manipulator.c b/source/blender/editors/manipulator_library/manipulator_types/cage2d_manipulator.c
index 23c6030f091..00eff3654b9 100644
--- a/source/blender/editors/manipulator_library/manipulator_types/cage2d_manipulator.c
+++ b/source/blender/editors/manipulator_library/manipulator_types/cage2d_manipulator.c
@@ -704,7 +704,7 @@ static int manipulator_cage2d_get_cursor(wmManipulator *mpr)
switch (highlight_part) {
case ED_MANIPULATOR_CAGE2D_PART_TRANSLATE:
- return BC_HANDCURSOR;
+ return BC_NSEW_SCROLLCURSOR;
case ED_MANIPULATOR_CAGE2D_PART_SCALE_MIN_X:
case ED_MANIPULATOR_CAGE2D_PART_SCALE_MAX_X:
return CURSOR_X_MOVE;
diff --git a/source/blender/editors/manipulator_library/manipulator_types/grab3d_manipulator.c b/source/blender/editors/manipulator_library/manipulator_types/grab3d_manipulator.c
index 4e62c9c396e..9c6c601b7ae 100644
--- a/source/blender/editors/manipulator_library/manipulator_types/grab3d_manipulator.c
+++ b/source/blender/editors/manipulator_library/manipulator_types/grab3d_manipulator.c
@@ -323,7 +323,7 @@ static void manipulator_grab_property_update(wmManipulator *mpr, wmManipulatorPr
static int manipulator_grab_cursor_get(wmManipulator *UNUSED(mpr))
{
- return BC_HANDCURSOR;
+ return BC_NSEW_SCROLLCURSOR;
}
/* -------------------------------------------------------------------- */