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>2015-07-01 19:13:15 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-07-01 19:20:54 +0300
commit5edff01920a40319347a7796b1b1359e7a6fd92d (patch)
treed5e162d533871ebfdd44dc635fcdefd8dcf9be85 /source/blender/makesrna
parent19da2d41244820a68cda3fc29cb5ab1504e673b1 (diff)
Transform: use snap-to-grid behavior from D910
Excuse the trashing here, but seems users prefer this most (though both can be useful). Note that the UI remains the same, so this is an option for 'Incremental' snapping instead of a new snapping mode.
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_scene.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c
index 23103206387..4688e691dae 100644
--- a/source/blender/makesrna/intern/rna_scene.c
+++ b/source/blender/makesrna/intern/rna_scene.c
@@ -2217,7 +2217,8 @@ static void rna_def_tool_settings(BlenderRNA *brna)
prop = RNA_def_property(srna, "use_snap_grid_absolute", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "snap_flag", SCE_SNAP_ABS_GRID);
- RNA_def_property_ui_text(prop, "Absolute Grid Snap", "Grid align vertices during transform");
+ RNA_def_property_ui_text(prop, "Absolute Grid Snap",
+ "Absolute grid alignment while translating (based on the pivot center)");
RNA_def_property_ui_icon(prop, ICON_SNAP_INCREMENT, 0);
RNA_def_property_update(prop, NC_SCENE | ND_TOOLSETTINGS, NULL); /* header redraw */