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:
authorDaniel Salazar <zanqdo@gmail.com>2010-02-10 01:32:26 +0300
committerDaniel Salazar <zanqdo@gmail.com>2010-02-10 01:32:26 +0300
commitd376ae62763792ebd53fbdefa3e8c5ef2775891f (patch)
treed97def32ad5f209e62936bddc9aadd9e57e23c97 /source/blender/makesrna
parentf22104542bf0025264934ba235b517abbe562c38 (diff)
More informative tooltip for Snapping button
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_scene.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c
index 2192dbef9ea..7d60786fbee 100644
--- a/source/blender/makesrna/intern/rna_scene.c
+++ b/source/blender/makesrna/intern/rna_scene.c
@@ -803,7 +803,7 @@ static void rna_def_tool_settings(BlenderRNA *brna)
prop= RNA_def_property(srna, "snap", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "snap_flag", SCE_SNAP);
- RNA_def_property_ui_text(prop, "Snap", "Snap during transform.");
+ RNA_def_property_ui_text(prop, "Snap", "Snap during transform. Leave Off to snap only while Ctrl is pressed.");
RNA_def_property_ui_icon(prop, ICON_SNAP_OFF, 1);
RNA_def_property_update(prop, NC_SCENE|ND_TOOLSETTINGS, NULL); /* header redraw */