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:
authorJoshua Leung <aligorith@gmail.com>2012-10-22 06:20:41 +0400
committerJoshua Leung <aligorith@gmail.com>2012-10-22 06:20:41 +0400
commit91ceb8f552c4619d57b47957da0fbfd7628ac200 (patch)
treed71251f538a6f603c31351786a8a550f0b6a20e2 /source/blender
parent2342209c95af153cc4c250e943a95835217db0af (diff)
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.
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/blenkernel/intern/anim_sys.c2
-rw-r--r--source/blender/makesrna/intern/rna_action.c3
2 files changed, 2 insertions, 3 deletions
diff --git a/source/blender/blenkernel/intern/anim_sys.c b/source/blender/blenkernel/intern/anim_sys.c
index b84ec100a96..66ed31c5b72 100644
--- a/source/blender/blenkernel/intern/anim_sys.c
+++ b/source/blender/blenkernel/intern/anim_sys.c
@@ -159,7 +159,7 @@ short BKE_animdata_set_action(ReportList *reports, ID *id, bAction *act)
/* 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;
}
diff --git a/source/blender/makesrna/intern/rna_action.c b/source/blender/makesrna/intern/rna_action.c
index d3029fcda94..6c6ccc5c432 100644
--- a/source/blender/makesrna/intern/rna_action.c
+++ b/source/blender/makesrna/intern/rna_action.c
@@ -263,8 +263,7 @@ static void rna_def_dopesheet(BlenderRNA *brna)
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);