fix [#28186] textboxes properties not animatable

This commit is contained in:
Campbell Barton 2011-08-09 14:50:40 +00:00
parent da6bc69ca9
commit 22694c993a
2 changed files with 2 additions and 2 deletions

@ -361,7 +361,7 @@ class DATA_PT_paragraph(CurveButtonsPanel, bpy.types.Panel):
col.prop(text, "offset_y", text="Y")
class DATA_PT_textboxes(CurveButtonsPanel, bpy.types.Panel):
class DATA_PT_text_boxes(CurveButtonsPanel, bpy.types.Panel):
bl_label = "Text Boxes"
@classmethod

@ -651,7 +651,7 @@ static char *rna_TextBox_path(PointerRNA *ptr)
int index= (int)(tb - cu->tb);
if (index >= 0 && index < cu->totbox)
return BLI_sprintfN("textboxes[%d]", index);
return BLI_sprintfN("text_boxes[%d]", index);
else
return BLI_strdup("");
}