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:
authorMartin Poirier <theeth@yahoo.com>2010-02-10 06:41:20 +0300
committerMartin Poirier <theeth@yahoo.com>2010-02-10 06:41:20 +0300
commitf07efaf124786492e30b5c3bcffecdd6106cc3c1 (patch)
tree2244848a2ee8b45c70271a4dc06bfed07c132126
parent491f9b7cbbba271d8b18cb41e00d5286aa96e5a6 (diff)
Can't hardcode hotkey in description if it can be changed in a keymap.
-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 69c4f83463b..d5a948eccf9 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. Leave Off to snap only while Ctrl is pressed.");
+ RNA_def_property_ui_text(prop, "Snap", "Snap during transform.");
RNA_def_property_ui_icon(prop, ICON_SNAP_OFF, 1);
RNA_def_property_update(prop, NC_SCENE|ND_TOOLSETTINGS, NULL); /* header redraw */