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.
This commit is contained in:
Ton Roosendaal 2012-10-24 14:45:23 +00:00
parent d4ee07537e
commit 927e14376f

@ -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;
}