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:
authorInes Almeida <britalmeida@gmail.com>2018-04-23 00:45:06 +0300
committerInes Almeida <britalmeida@gmail.com>2018-04-23 01:51:20 +0300
commit93adbf8195f0960fc203e8d1a3851efd38526d21 (patch)
treec4a13709170b4278ce991ae9d83fc264a9fc52f7 /source/blender/editors/transform/transform_manipulator.c
parentad0753218fbd9264ab7afc9eec955d789e860f5c (diff)
Manipulators: tweak plane distance in move manipulator
Diffstat (limited to 'source/blender/editors/transform/transform_manipulator.c')
-rw-r--r--source/blender/editors/transform/transform_manipulator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/transform/transform_manipulator.c b/source/blender/editors/transform/transform_manipulator.c
index 46d3d9dd894..fc62ff7ce31 100644
--- a/source/blender/editors/transform/transform_manipulator.c
+++ b/source/blender/editors/transform/transform_manipulator.c
@@ -1327,7 +1327,7 @@ static void WIDGETGROUP_manipulator_setup(const bContext *C, wmManipulatorGroup
case MAN_AXIS_SCALE_YZ:
case MAN_AXIS_SCALE_ZX:
{
- const float ofs_ax = 11.0f;
+ const float ofs_ax = 7.0f;
const float ofs[3] = {ofs_ax, ofs_ax, 0.0f};
WM_manipulator_set_scale(axis, 0.07f);
WM_manipulator_set_matrix_offset_location(axis, ofs);