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:
authorAntonio Vazquez <blendergit@gmail.com>2019-10-27 12:05:08 +0300
committerAntonio Vazquez <blendergit@gmail.com>2019-10-27 12:05:08 +0300
commitf1824e6ec45fa0d7c0a01d50ace45ec28595d07d (patch)
tree31da95586f47e3fd4b33e58a9a9cce2a0bbac812 /source/blender/makesrna/intern/rna_brush.c
parent7137d89daaaea948c9018b3719e453e67803b32d (diff)
Cleanup: Fix tooltip text
Diffstat (limited to 'source/blender/makesrna/intern/rna_brush.c')
-rw-r--r--source/blender/makesrna/intern/rna_brush.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_brush.c b/source/blender/makesrna/intern/rna_brush.c
index 57a3d889437..99c1bdfdbee 100644
--- a/source/blender/makesrna/intern/rna_brush.c
+++ b/source/blender/makesrna/intern/rna_brush.c
@@ -1661,7 +1661,7 @@ static void rna_def_brush(BlenderRNA *brna)
prop = RNA_def_property(srna, "gpencil_tool", PROP_ENUM, PROP_NONE);
RNA_def_property_enum_sdna(prop, NULL, "gpencil_tool");
RNA_def_property_enum_items(prop, rna_enum_brush_gpencil_types_items);
- RNA_def_property_ui_text(prop, "Type", "Category of the brush");
+ RNA_def_property_ui_text(prop, "Grease Pencil Draw Tool", "");
RNA_def_property_clear_flag(prop, PROP_ANIMATABLE);
/** End per mode tool properties. */