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:
authorPablo Vazquez <contact@pablovazquez.art>2019-03-05 19:06:11 +0300
committerPablo Vazquez <contact@pablovazquez.art>2019-03-05 19:06:11 +0300
commitb05d3c27970e378f61d83d5e3229b9b1df7a6c94 (patch)
tree4b3fbec68cb4f1251ce8b036213a0eb82addab19 /source/blender/editors/object
parentb8bb2bb960accdd1c2fb5bdfaabb7ead898d9725 (diff)
UI: Nicer report when trying to edit external libraries
Rename 'libdata' to 'library data'.
Diffstat (limited to 'source/blender/editors/object')
-rw-r--r--source/blender/editors/object/object_add.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/object/object_add.c b/source/blender/editors/object/object_add.c
index 23fc8109043..0e6505ab712 100644
--- a/source/blender/editors/object/object_add.c
+++ b/source/blender/editors/object/object_add.c
@@ -2444,7 +2444,7 @@ static int join_exec(bContext *C, wmOperator *op)
return OPERATOR_CANCELLED;
}
else if (BKE_object_obdata_is_libdata(ob)) {
- BKE_report(op->reports, RPT_ERROR, "Cannot edit external libdata");
+ BKE_report(op->reports, RPT_ERROR, "Cannot edit external library data");
return OPERATOR_CANCELLED;
}
else if (ob->type == OB_GPENCIL) {
@@ -2506,7 +2506,7 @@ static int join_shapes_exec(bContext *C, wmOperator *op)
return OPERATOR_CANCELLED;
}
else if (BKE_object_obdata_is_libdata(ob)) {
- BKE_report(op->reports, RPT_ERROR, "Cannot edit external libdata");
+ BKE_report(op->reports, RPT_ERROR, "Cannot edit external library data");
return OPERATOR_CANCELLED;
}