Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/space_nla/nla_buttons.c
| Show First 20 Lines • Show All 279 Lines • ▼ Show 20 Lines | if (adt_ptr.id.data) { | ||||
| 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); | ||||
| uiTemplateID(row, (bContext *)C, &adt_ptr, "action", "ACTION_OT_new", NULL, "NLA_OT_action_unlink"); | uiTemplateID(row, (bContext *)C, &adt_ptr, "action", "ACTION_OT_new", NULL, "NLA_OT_action_unlink", 0); | ||||
mont29: Should use UI_TEMPLATE_ID_FILTER_NONE here too. | |||||
| /* extrapolation */ | /* extrapolation */ | ||||
| row = uiLayoutRow(layout, true); | row = uiLayoutRow(layout, true); | ||||
| uiItemR(row, &adt_ptr, "action_extrapolation", 0, NULL, ICON_NONE); | uiItemR(row, &adt_ptr, "action_extrapolation", 0, NULL, ICON_NONE); | ||||
| /* blending */ | /* blending */ | ||||
| row = uiLayoutRow(layout, true); | row = uiLayoutRow(layout, true); | ||||
| uiItemR(row, &adt_ptr, "action_blend_type", 0, NULL, ICON_NONE); | uiItemR(row, &adt_ptr, "action_blend_type", 0, NULL, ICON_NONE); | ||||
| ▲ Show 20 Lines • Show All 288 Lines • Show Last 20 Lines | |||||
Should use UI_TEMPLATE_ID_FILTER_NONE here too.