Some more assorted fixes

* More duplicate/wrong comments (copy+paste errors)
* Brough Calculate/Clear Motion Path UI for bones more in line with the Object
version
This commit is contained in:
Joshua Leung
2013-03-16 05:58:59 +00:00
parent 9aa4396a97
commit 31356c86d3
3 changed files with 9 additions and 7 deletions

View File

@@ -472,8 +472,9 @@ class VIEW3D_PT_tools_posemode(View3DPanel, Panel):
col = layout.column(align=True)
col.label(text="Motion Paths:")
col.operator("pose.paths_calculate", text="Calculate Paths")
col.operator("pose.paths_clear", text="Clear Paths")
row = col.row(align=True)
row.operator("pose.paths_calculate", text="Calculate")
row.operator("pose.paths_clear", text="Clear")
draw_repeat_tools(context, layout)

View File

@@ -469,7 +469,8 @@ static bool nlaedit_add_tracks_empty(bAnimContext *ac)
return added;
}
/* Add Tracks exec() */
/* ----- */
static int nlaedit_add_tracks_exec(bContext *C, wmOperator *op)
{
bAnimContext ac;

View File

@@ -1627,7 +1627,7 @@ void NLA_OT_action_sync_length(wmOperatorType *ot)
/* api callbacks */
ot->exec = nlaedit_sync_actlen_exec;
ot->poll = ED_operator_nla_active; // XXX: is this satisfactory... probably requires a check for active strip...
ot->poll = nlaop_poll_tweakmode_off;
/* flags */
ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
@@ -2102,8 +2102,10 @@ static int nla_fmodifier_copy_exec(bContext *C, wmOperator *op)
BKE_report(op->reports, RPT_ERROR, "No F-Modifiers available to be copied");
return OPERATOR_CANCELLED;
}
else
else {
/* no updates needed - copy is non-destructive operation */
return OPERATOR_FINISHED;
}
}
void NLA_OT_fmodifier_copy(wmOperatorType *ot)
@@ -2157,8 +2159,6 @@ static int nla_fmodifier_paste_exec(bContext *C, wmOperator *op)
/* successful or not? */
if (ok) {
/* set notifier that things have changed */
/* set notifier that things have changed */
WM_event_add_notifier(C, NC_ANIMATION | ND_NLA | NA_EDITED, NULL);
return OPERATOR_FINISHED;
}