Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2013-11-26 03:38:50 +0400
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2013-11-29 20:49:01 +0400
commitcedc90b6077a01a60f589f09a5c82f4b7a359a4b (patch)
treee6c24bf3fdb0aa2286c744e30ce45b10c8cb0085 /source/blender/editors/space_clip/clip_graph_ops.c
parent77719bfd0669cc675ad729f4c51672173842faca (diff)
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
Diffstat (limited to 'source/blender/editors/space_clip/clip_graph_ops.c')
-rw-r--r--source/blender/editors/space_clip/clip_graph_ops.c4
1 files changed, 2 insertions, 2 deletions
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 */