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>2017-08-03 08:12:47 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-08-03 08:12:47 +0300
commit4fada2e10f925100956f47e2ff994471bc844db4 (patch)
tree9a96050c4f38aa694f07bc94709768b495511944 /source/blender/editors/manipulator_library
parentfc9da7494248faf9ba591d95e470fd5f8efaebc9 (diff)
Manipulator: Use 2D manipulators in the 3D view
Also split update flag into draw-steps, since drawing 3D manipulators was tagging 2D as being refreshed.
Diffstat (limited to 'source/blender/editors/manipulator_library')
-rw-r--r--source/blender/editors/manipulator_library/manipulator_types/cage2d_manipulator.c3
1 files changed, 1 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 bd45232c56f..0f33a6abe09 100644
--- a/source/blender/editors/manipulator_library/manipulator_types/cage2d_manipulator.c
+++ b/source/blender/editors/manipulator_library/manipulator_types/cage2d_manipulator.c
@@ -702,9 +702,8 @@ static void MANIPULATOR_WT_cage_2d(wmManipulatorType *wt)
RNA_def_float_vector(wt->srna, "dimensions", 2, unit_v2, 0, FLT_MAX, "Dimensions", "", 0.0f, FLT_MAX);
RNA_def_enum_flag(wt->srna, "transform", rna_enum_transform, 0, "Transform Options", "");
- WM_manipulatortype_target_property_def(wt, "offset", PROP_FLOAT, 1);
+ WM_manipulatortype_target_property_def(wt, "offset", PROP_FLOAT, 2);
WM_manipulatortype_target_property_def(wt, "scale", PROP_FLOAT, 2);
- WM_manipulatortype_target_property_def(wt, "scale_uniform", PROP_FLOAT, 1);
}
void ED_manipulatortypes_cage_2d(void)