Line up RNA property with the rest of space

This commit is contained in:
Daniel Salazar 2010-02-11 17:41:17 +00:00
parent 9f3563fa94
commit 39cccd2a90
2 changed files with 1 additions and 7 deletions

@ -950,7 +950,7 @@ class USERPREF_PT_theme(bpy.types.Panel):
prefs = theme.console
col = split.column()
col.prop(prefs, "background")
col.prop(prefs, "back")
col.prop(prefs, "header")
col = split.column()

@ -987,12 +987,6 @@ static void rna_def_userdef_theme_space_console(BlenderRNA *brna)
RNA_def_property_array(prop, 3);
RNA_def_property_ui_text(prop, "Line Error", "");
RNA_def_property_update(prop, 0, "rna_userdef_update");
prop= RNA_def_property(srna, "background", PROP_FLOAT, PROP_COLOR);
RNA_def_property_float_sdna(prop, NULL, "back");
RNA_def_property_array(prop, 3);
RNA_def_property_ui_text(prop, "Window Background", "");
RNA_def_property_update(prop, 0, "rna_userdef_update");
}
static void rna_def_userdef_theme_space_info(BlenderRNA *brna)