Cleanup: Fix tooltip text

This commit is contained in:
Antonio Vazquez 2019-10-27 10:05:08 +01:00
parent 7137d89daa
commit f1824e6ec4
1 changed files with 1 additions and 1 deletions

View File

@ -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. */