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:
authorHans Goudey <h.goudey@me.com>2021-01-29 01:25:59 +0300
committerHans Goudey <h.goudey@me.com>2021-01-29 01:25:59 +0300
commit92b0803f35a731c0c070f302d6663e3003b3a310 (patch)
tree57b8ac8a6f29c531d8e645fdd307586bbd0ac17a /source/blender/makesrna/intern/rna_userdef.c
parent323b7ad9cd447d57f2e33aae937fb3265b9f5475 (diff)
parent71cb6923f5073d4d1ca629f1299cfe251f8a611d (diff)
Merge branch 'blender-v2.92-release'
Diffstat (limited to 'source/blender/makesrna/intern/rna_userdef.c')
-rw-r--r--source/blender/makesrna/intern/rna_userdef.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/blender/makesrna/intern/rna_userdef.c b/source/blender/makesrna/intern/rna_userdef.c
index 445ff773868..8d4578067f9 100644
--- a/source/blender/makesrna/intern/rna_userdef.c
+++ b/source/blender/makesrna/intern/rna_userdef.c
@@ -3005,6 +3005,12 @@ static void rna_def_userdef_theme_space_buts(BlenderRNA *brna)
RNA_def_property_ui_text(prop, "Search Match", "");
RNA_def_property_update(prop, 0, "rna_userdef_theme_update");
+ prop = RNA_def_property(srna, "active_modifier", PROP_FLOAT, PROP_COLOR_GAMMA);
+ RNA_def_property_float_sdna(prop, NULL, "active");
+ RNA_def_property_array(prop, 4);
+ RNA_def_property_ui_text(prop, "Active Modifier Outline", "");
+ RNA_def_property_update(prop, 0, "rna_userdef_theme_update");
+
rna_def_userdef_theme_spaces_main(srna);
}