UI: replace transform hand icon w/ 4 arrows

The hand doesn't have a hotspot which you might want using manipulators
This commit is contained in:
Campbell Barton 2018-04-28 09:14:02 +02:00
parent 617534327a
commit 159a7e8b38
3 changed files with 3 additions and 3 deletions

View File

@ -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;

View File

@ -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;
}
/* -------------------------------------------------------------------- */

View File

@ -351,7 +351,7 @@ void initMouseInputMode(TransInfo *t, MouseInput *mi, MouseInputMode mode)
case HLP_NONE:
/* INPUT_VECTOR, INPUT_CUSTOM_RATIO, INPUT_CUSTOM_RATIO_FLIP */
if (t->flag & T_MODAL) {
WM_cursor_set(win, BC_HANDCURSOR);
WM_cursor_set(win, BC_NSEW_SCROLLCURSOR);
}
break;
case HLP_SPRING: