Can't hardcode hotkey in description if it can be changed in a keymap.

This commit is contained in:
Martin Poirier
2010-02-10 03:41:20 +00:00
parent 491f9b7cbb
commit f07efaf124

View File

@@ -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 */