fix [#28186] textboxes properties not animatable
This commit is contained in:
@@ -361,7 +361,7 @@ class DATA_PT_paragraph(CurveButtonsPanel, bpy.types.Panel):
|
|||||||
col.prop(text, "offset_y", text="Y")
|
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"
|
bl_label = "Text Boxes"
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
|
@@ -651,7 +651,7 @@ static char *rna_TextBox_path(PointerRNA *ptr)
|
|||||||
int index= (int)(tb - cu->tb);
|
int index= (int)(tb - cu->tb);
|
||||||
|
|
||||||
if (index >= 0 && index < cu->totbox)
|
if (index >= 0 && index < cu->totbox)
|
||||||
return BLI_sprintfN("textboxes[%d]", index);
|
return BLI_sprintfN("text_boxes[%d]", index);
|
||||||
else
|
else
|
||||||
return BLI_strdup("");
|
return BLI_strdup("");
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user