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:
authorDalai Felinto <dalai@blender.org>2022-06-03 19:40:14 +0300
committerDalai Felinto <dalai@blender.org>2022-06-03 19:40:14 +0300
commit3fe7d049d21b4ad939ea8fb2df1f80c4f107a699 (patch)
tree53f9a82d73b640c11a1e945debbfcaed1293d586 /source/blender/blenkernel
parent5cc118fc09018a61c11da7695806131cfb064b77 (diff)
Fix new curve objects showing as UNKNOWN in the outliner
The fix is to unify with the name we had for the old Curves objects. That means that we will see them bothi (old and new curves) in the outliner (under two different categories but with different names). This is considered to be a temporary solution until we remove the old curve system entirely.
Diffstat (limited to 'source/blender/blenkernel')
-rw-r--r--source/blender/blenkernel/intern/curves.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/curves.cc b/source/blender/blenkernel/intern/curves.cc
index 589a1a9208e..9abd5a7fdf0 100644
--- a/source/blender/blenkernel/intern/curves.cc
+++ b/source/blender/blenkernel/intern/curves.cc
@@ -208,8 +208,8 @@ IDTypeInfo IDType_ID_CV = {
/*id_filter */ FILTER_ID_CV,
/*main_listbase_index */ INDEX_ID_CV,
/*struct_size */ sizeof(Curves),
- /*name */ "Hair Curves",
- /*name_plural */ "Hair Curves",
+ /*name */ "Curves",
+ /*name_plural */ "curves",
/*translation_context */ BLT_I18NCONTEXT_ID_CURVES,
/*flags */ IDTYPE_FLAGS_APPEND_IS_REUSABLE,
/*asset_type_info */ nullptr,