From 927e14376fd6c0643cf5d8d05e36b9b29a68bc1c Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Wed, 24 Oct 2012 14:45:23 +0000 Subject: Bugfix #31527 Using "outliner data operation" on vertexgroup suggested it should work, but this is not supported yet. Similar to all the other cases it throws a Report warning now. --- source/blender/editors/space_outliner/outliner_tools.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'source/blender/editors/space_outliner') diff --git a/source/blender/editors/space_outliner/outliner_tools.c b/source/blender/editors/space_outliner/outliner_tools.c index e4cd971dbd5..32013dd2767 100644 --- a/source/blender/editors/space_outliner/outliner_tools.c +++ b/source/blender/editors/space_outliner/outliner_tools.c @@ -811,7 +811,7 @@ static int outliner_id_operation_exec(bContext *C, wmOperator *op) ED_undo_push(C, "Unlink world"); break; default: - BKE_report(op->reports, RPT_WARNING, "Not yet"); + BKE_report(op->reports, RPT_WARNING, "Not yet implemented"); break; } } @@ -844,7 +844,7 @@ static int outliner_id_operation_exec(bContext *C, wmOperator *op) break; default: - BKE_report(op->reports, RPT_WARNING, "Not yet"); + BKE_report(op->reports, RPT_WARNING, "Not yet implemented"); break; } } @@ -1202,6 +1202,7 @@ static int outliner_data_operation_exec(bContext *C, wmOperator *op) break; default: + BKE_report(op->reports, RPT_WARNING, "Not yet implemented"); break; } -- cgit v1.2.3