[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [51486] trunk/blender/source/blender: Tooltip/Description fixes for recent "tweaks"

Joshua Leung aligorith at gmail.com
Mon Oct 22 04:20:46 CEST 2012


Revision: 51486
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=51486
Author:   aligorith
Date:     2012-10-22 02:20:41 +0000 (Mon, 22 Oct 2012)
Log Message:
-----------
Tooltip/Description fixes for recent "tweaks"

1) "AnimData" is a technical term used for a specific entity in the system.
"anim data" is mangled fluff.
2) Old tooltip for DopeSheet.source is no longer valid. It's nearly always used
to represent the current scene now.

Modified Paths:
--------------
    trunk/blender/source/blender/blenkernel/intern/anim_sys.c
    trunk/blender/source/blender/makesrna/intern/rna_action.c

Modified: trunk/blender/source/blender/blenkernel/intern/anim_sys.c
===================================================================
--- trunk/blender/source/blender/blenkernel/intern/anim_sys.c	2012-10-22 02:09:41 UTC (rev 51485)
+++ trunk/blender/source/blender/blenkernel/intern/anim_sys.c	2012-10-22 02:20:41 UTC (rev 51486)
@@ -159,7 +159,7 @@
 	
 	/* animdata validity check */
 	if (adt == NULL) {
-		BKE_report(reports, RPT_WARNING, "No anim data to set action on");
+		BKE_report(reports, RPT_WARNING, "No AnimData to set action on");
 		return ok;
 	}
 	

Modified: trunk/blender/source/blender/makesrna/intern/rna_action.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_action.c	2012-10-22 02:09:41 UTC (rev 51485)
+++ trunk/blender/source/blender/makesrna/intern/rna_action.c	2012-10-22 02:20:41 UTC (rev 51486)
@@ -263,8 +263,7 @@
 	prop = RNA_def_property(srna, "source", PROP_POINTER, PROP_NONE);
 	RNA_def_property_struct_type(prop, "ID");
 	RNA_def_property_ui_text(prop, "Source",
-	                         "ID block representing source data, currently ID_SCE (for dopesheet), "
-	                         "and ID_SC (for grease pencil)");
+	                         "ID-Block representing source data, usually ID_SCE (i.e. Scene)");
 	
 	/* Show datablock filters */
 	prop = RNA_def_property(srna, "show_datablock_filters", PROP_BOOLEAN, PROP_NONE);




More information about the Bf-blender-cvs mailing list