From cedc90b6077a01a60f589f09a5c82f4b7a359a4b Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Tue, 26 Nov 2013 00:38:50 +0100 Subject: Fix errors and inconsistencies in confirmation popup removal. * Improve some clip editor messages * Remove popup for metastrips, seems unnecessary * Renamed some variables for consistency * Avoid unnecessary call to CTX_DATA_COUNT Reviewed By: sergey, campbellbarton, aligorith Differential Revision: http://developer.blender.org/D44 --- source/blender/editors/space_clip/clip_graph_ops.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/editors/space_clip/clip_graph_ops.c') diff --git a/source/blender/editors/space_clip/clip_graph_ops.c b/source/blender/editors/space_clip/clip_graph_ops.c index 2a9bc497215..ffb805cdc5f 100644 --- a/source/blender/editors/space_clip/clip_graph_ops.c +++ b/source/blender/editors/space_clip/clip_graph_ops.c @@ -482,7 +482,7 @@ static int delete_curve_exec(bContext *C, wmOperator *op) if (act_track) { clip_delete_track(C, clip, act_track); - BKE_report(op->reports, RPT_INFO, "Deleted all selected curves"); + BKE_report(op->reports, RPT_INFO, "Deleted track"); } return OPERATOR_FINISHED; @@ -492,7 +492,7 @@ void CLIP_OT_graph_delete_curve(wmOperatorType *ot) { /* identifiers */ ot->name = "Delete Curve"; - ot->description = "Delete selected curves"; + ot->description = "Delete track corresponding to the selected curve"; ot->idname = "CLIP_OT_graph_delete_curve"; /* api callbacks */ -- cgit v1.2.3