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:
authorCampbell Barton <ideasman42@gmail.com>2019-01-29 00:52:56 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-01-29 01:11:05 +0300
commit957b4547aeebc8c5a438ea507e8033cb563b7f40 (patch)
treee491f93bf4cf8da7e96efa6209dbc89930958b55 /source/blender/makesrna/intern/rna_linestyle.c
parent097b1cd08a551c22df86c38c8d8380b87c88e81d (diff)
Cleanup: Remove unused MTex.texflag
Diffstat (limited to 'source/blender/makesrna/intern/rna_linestyle.c')
-rw-r--r--source/blender/makesrna/intern/rna_linestyle.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/source/blender/makesrna/intern/rna_linestyle.c b/source/blender/makesrna/intern/rna_linestyle.c
index ada7d1f9067..e8282644226 100644
--- a/source/blender/makesrna/intern/rna_linestyle.c
+++ b/source/blender/makesrna/intern/rna_linestyle.c
@@ -554,11 +554,6 @@ static void rna_def_linestyle_mtex(BlenderRNA *brna)
RNA_def_property_ui_text(prop, "Alpha", "The texture affects the alpha value");
RNA_def_property_update(prop, 0, "rna_LineStyle_update");
- prop = RNA_def_property(srna, "use_tips", PROP_BOOLEAN, PROP_NONE);
- RNA_def_property_boolean_sdna(prop, NULL, "texflag", MTEX_TIPS);
- RNA_def_property_ui_text(prop, "Use Tips", "Lower half of the texture is for tips of the stroke");
- RNA_def_property_update(prop, 0, "rna_LineStyle_update");
-
prop = RNA_def_property(srna, "texture_coords", PROP_ENUM, PROP_NONE);
RNA_def_property_enum_sdna(prop, NULL, "texco");
RNA_def_property_enum_items(prop, texco_items);