Fix for [#34509] minor theme panel color issue

* panelcolors.back and panelcolors.header were missing in resources.c for the 3D View.
This commit is contained in:
Thomas Dinges
2013-03-03 17:30:23 +00:00
parent f4320ad2ed
commit 34b30f8474

View File

@@ -712,6 +712,8 @@ void ui_theme_init_default(void)
/* space view3d */
btheme->tv3d.panelcolors.show_back = FALSE;
btheme->tv3d.panelcolors.show_header = FALSE;
rgba_char_args_set_fl(btheme->tv3d.panelcolors.back, 0.45, 0.45, 0.45, 0.5);
rgba_char_args_set_fl(btheme->tv3d.panelcolors.header, 0, 0, 0, 0.01);
rgba_char_args_set_fl(btheme->tv3d.back, 0.225, 0.225, 0.225, 1.0);
rgba_char_args_set(btheme->tv3d.text, 0, 0, 0, 255);
rgba_char_args_set(btheme->tv3d.text_hi, 255, 255, 255, 255);