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/space_text/text_ops.c
parentb8bb2bb960accdd1c2fb5bdfaabb7ead898d9725 (diff)
UI: Nicer report when trying to edit external libraries
Rename 'libdata' to 'library data'.
Diffstat (limited to 'source/blender/editors/space_text/text_ops.c')
-rw-r--r--source/blender/editors/space_text/text_ops.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/space_text/text_ops.c b/source/blender/editors/space_text/text_ops.c
index c2f3be0d881..563aacafc50 100644
--- a/source/blender/editors/space_text/text_ops.c
+++ b/source/blender/editors/space_text/text_ops.c
@@ -84,7 +84,7 @@ static bool text_edit_poll(bContext *C)
return 0;
if (ID_IS_LINKED(text)) {
- // BKE_report(op->reports, RPT_ERROR, "Cannot edit external libdata");
+ // BKE_report(op->reports, RPT_ERROR, "Cannot edit external library data");
return 0;
}
@@ -100,7 +100,7 @@ bool text_space_edit_poll(bContext *C)
return 0;
if (ID_IS_LINKED(text)) {
- // BKE_report(op->reports, RPT_ERROR, "Cannot edit external libdata");
+ // BKE_report(op->reports, RPT_ERROR, "Cannot edit external library data");
return 0;
}
@@ -120,7 +120,7 @@ static bool text_region_edit_poll(bContext *C)
return 0;
if (ID_IS_LINKED(text)) {
- // BKE_report(op->reports, RPT_ERROR, "Cannot edit external libdata");
+ // BKE_report(op->reports, RPT_ERROR, "Cannot edit external library data");
return 0;
}