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:
authorPablo Vazquez <venomgfx@gmail.com>2018-07-10 01:47:08 +0300
committerPablo Vazquez <venomgfx@gmail.com>2018-07-10 01:47:08 +0300
commit1112f49a14ba3bdf2c960a61a1975458e3ee986f (patch)
treecfbce6cac6a13efc991b7e03a341be1182c910e1 /source/blender/makesrna/intern/rna_userdef.c
parent8373544df30a0e24b080a03c4d4c0b5108c4932d (diff)
UI: Cleanup - Remove Show Panel Header and Background
A toggle for this is no longer required now that both header and background colors are RGBA (disabling Show Header is the same setting the alpha to 0). Thanks Brecht for reviewing!
Diffstat (limited to 'source/blender/makesrna/intern/rna_userdef.c')
-rw-r--r--source/blender/makesrna/intern/rna_userdef.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/source/blender/makesrna/intern/rna_userdef.c b/source/blender/makesrna/intern/rna_userdef.c
index f088ac9f442..aa6eb4c4dc2 100644
--- a/source/blender/makesrna/intern/rna_userdef.c
+++ b/source/blender/makesrna/intern/rna_userdef.c
@@ -1029,14 +1029,6 @@ static void rna_def_userdef_theme_ui_panel(BlenderRNA *brna)
prop = RNA_def_property(srna, "sub_back", PROP_FLOAT, PROP_COLOR_GAMMA);
RNA_def_property_ui_text(prop, "Sub Background", "");
RNA_def_property_update(prop, 0, "rna_userdef_update");
-
- prop = RNA_def_property(srna, "show_header", PROP_BOOLEAN, PROP_NONE);
- RNA_def_property_ui_text(prop, "Show Header", "");
- RNA_def_property_update(prop, 0, "rna_userdef_update");
-
- prop = RNA_def_property(srna, "show_back", PROP_BOOLEAN, PROP_NONE);
- RNA_def_property_ui_text(prop, "Show Background", "");
- RNA_def_property_update(prop, 0, "rna_userdef_update");
}
static void rna_def_userdef_theme_ui_gradient(BlenderRNA *brna)