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:
authorBastien Montagne <bastien@blender.org>2022-07-13 18:39:19 +0300
committerBastien Montagne <bastien@blender.org>2022-07-13 18:40:35 +0300
commit144d9f2b2e80cf543e228ba5b0c0279aeca2c574 (patch)
tree9669e163a6c466424971a1eb13b6049408aca6fa
parent88fbf0a8fc1c4192279ebd4c31b66acf05117aa6 (diff)
Cleanup: Do not use spaces in default data names.
Using white spaces in data names should not be encouraged in general, better not give wrong example here. Originally part of D15441.
-rw-r--r--source/blender/editors/object/object_add.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/object/object_add.cc b/source/blender/editors/object/object_add.cc
index 66e76addd6f..671a32ce438 100644
--- a/source/blender/editors/object/object_add.cc
+++ b/source/blender/editors/object/object_add.cc
@@ -1349,7 +1349,7 @@ static int object_gpencil_add_exec(bContext *C, wmOperator *op)
case GP_LRT_OBJECT:
case GP_LRT_SCENE:
case GP_LRT_COLLECTION: {
- ob_name = "Line Art";
+ ob_name = "LineArt";
break;
}
default: {