Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/space_nla/nla_buttons.c
| Show First 20 Lines • Show All 306 Lines • ▼ Show 20 Lines | if (adt_ptr.owner_id) { | ||||
| RNA_id_pointer_create(id, &id_ptr); | RNA_id_pointer_create(id, &id_ptr); | ||||
| /* ID-block name > AnimData */ | /* ID-block name > AnimData */ | ||||
| row = uiLayoutRow(layout, true); | row = uiLayoutRow(layout, true); | ||||
| uiLayoutSetAlignment(row, UI_LAYOUT_ALIGN_LEFT); | uiLayoutSetAlignment(row, UI_LAYOUT_ALIGN_LEFT); | ||||
| uiItemL(row, id->name + 2, RNA_struct_ui_icon(id_ptr.type)); /* id-block (src) */ | uiItemL(row, id->name + 2, RNA_struct_ui_icon(id_ptr.type)); /* id-block (src) */ | ||||
| uiItemL(row, "", ICON_SMALL_TRI_RIGHT_VEC); /* expander */ | uiItemL(row, "", ICON_RIGHTARROW); /* expander */ | ||||
| uiItemL(row, IFACE_("Animation Data"), ICON_ANIM_DATA); /* animdata */ | uiItemL(row, IFACE_("Animation Data"), ICON_ANIM_DATA); /* animdata */ | ||||
| uiItemS(layout); | uiItemS(layout); | ||||
| } | } | ||||
| /* Active Action Properties ------------------------------------- */ | /* Active Action Properties ------------------------------------- */ | ||||
| /* action */ | /* action */ | ||||
| row = uiLayoutRow(layout, true); | row = uiLayoutRow(layout, true); | ||||
| ▲ Show 20 Lines • Show All 380 Lines • Show Last 20 Lines | |||||