[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [35963] trunk/blender/source/blender/ makesrna/intern/rna_scene.c: IRC report: Proportional editing tooltip lacked, and missed info for

Ton Roosendaal ton at blender.org
Sat Apr 2 18:29:34 CEST 2011


Revision: 35963
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=35963
Author:   ton
Date:     2011-04-02 16:29:33 +0000 (Sat, 02 Apr 2011)
Log Message:
-----------
IRC report: Proportional editing tooltip lacked, and missed info for
the menu items.

Modified Paths:
--------------
    trunk/blender/source/blender/makesrna/intern/rna_scene.c

Modified: trunk/blender/source/blender/makesrna/intern/rna_scene.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_scene.c	2011-04-02 15:30:58 UTC (rev 35962)
+++ trunk/blender/source/blender/makesrna/intern/rna_scene.c	2011-04-02 16:29:33 UTC (rev 35963)
@@ -78,9 +78,9 @@
 
 
 EnumPropertyItem proportional_editing_items[] = {
-	{PROP_EDIT_OFF, "DISABLED", ICON_PROP_OFF, "Disable", ""},
-	{PROP_EDIT_ON, "ENABLED", ICON_PROP_ON, "Enable", ""},
-	{PROP_EDIT_CONNECTED, "CONNECTED", ICON_PROP_CON, "Connected", ""},
+	{PROP_EDIT_OFF, "DISABLED", ICON_PROP_OFF, "Disable", "Proportional Editing disabled"},
+	{PROP_EDIT_ON, "ENABLED", ICON_PROP_ON, "Enable", "Proportional Editing enabled"},
+	{PROP_EDIT_CONNECTED, "CONNECTED", ICON_PROP_CON, "Connected", "Proportional Editing using connected geometry only"},
 	{0, NULL, 0, NULL, NULL}};
 
 /* keep for operators, not used here */
@@ -1087,7 +1087,7 @@
 	prop= RNA_def_property(srna, "proportional_edit", PROP_ENUM, PROP_NONE);
 	RNA_def_property_enum_sdna(prop, NULL, "proportional");
 	RNA_def_property_enum_items(prop, proportional_editing_items);
-	RNA_def_property_ui_text(prop, "Proportional Editing", "Proportional editing mode");
+	RNA_def_property_ui_text(prop, "Proportional Editing", "Proportional Editing mode, allows transforms with distance fall-off");
 	RNA_def_property_update(prop, NC_SCENE|ND_TOOLSETTINGS, NULL); /* header redraw */
 
 	prop= RNA_def_property(srna, "use_proportional_edit_objects", PROP_BOOLEAN, PROP_NONE);




More information about the Bf-blender-cvs mailing list