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:
authorTon Roosendaal <ton@blender.org>2012-10-24 18:45:23 +0400
committerTon Roosendaal <ton@blender.org>2012-10-24 18:45:23 +0400
commit927e14376fd6c0643cf5d8d05e36b9b29a68bc1c (patch)
tree704c63d3b631311524b2c83c96765694429e7da2 /source/blender/editors/space_outliner
parentd4ee07537e19902c18f6ae8cd5f8335e40a8b3dc (diff)
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.
Diffstat (limited to 'source/blender/editors/space_outliner')
-rw-r--r--source/blender/editors/space_outliner/outliner_tools.c5
1 files changed, 3 insertions, 2 deletions
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;
}