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
path: root/source
diff options
context:
space:
mode:
authorTon Roosendaal <ton@blender.org>2011-04-01 19:08:45 +0400
committerTon Roosendaal <ton@blender.org>2011-04-01 19:08:45 +0400
commit339c6c4a511f6c6f9384e2b39d9f6b5396e2d4ee (patch)
treea95dd09267be3f61311233fda6ec02bb21302da7 /source
parentb94a5e7f02a07e13d3ad559ddef464086a447ae8 (diff)
Bugfix #26691
"Theme default" missed a couple of new colors still.
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/interface/resources.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/source/blender/editors/interface/resources.c b/source/blender/editors/interface/resources.c
index ef9da932dd8..1a2a2906f1a 100644
--- a/source/blender/editors/interface/resources.c
+++ b/source/blender/editors/interface/resources.c
@@ -561,6 +561,7 @@ void ui_theme_init_default(void)
/* UI buttons */
ui_widget_color_init(&btheme->tui);
+ btheme->tui.iconfile[0]= 0;
/* Bone Color Sets */
ui_theme_init_boneColorSets(btheme);
@@ -601,6 +602,16 @@ void ui_theme_init_default(void)
SETCOL(btheme->tv3d.normal, 0x22, 0xDD, 0xDD, 255);
SETCOL(btheme->tv3d.vertex_normal, 0x23, 0x61, 0xDD, 255);
SETCOL(btheme->tv3d.face_dot, 255, 133, 0, 255);
+ SETCOL(btheme->tv3d.editmesh_active, 255, 255, 255, 128);
+ SETCOLF(btheme->tv3d.edge_crease, 0.8, 0, 0.6, 1.0);
+ SETCOL(btheme->tv3d.edge_sharp, 255, 32, 32, 255);
+ SETCOL(btheme->tv3d.header_text, 0, 0, 0, 255);
+ SETCOL(btheme->tv3d.header_text_hi, 255, 255, 255, 255);
+ SETCOL(btheme->tv3d.button_text, 0, 0, 0, 255);
+ SETCOL(btheme->tv3d.button_text_hi, 255, 255, 255, 255);
+ SETCOL(btheme->tv3d.button_title, 0, 0, 0, 255);
+ SETCOL(btheme->tv3d.title, 0, 0, 0, 255);
+
btheme->tv3d.facedot_size= 4;
SETCOL(btheme->tv3d.extra_edge_len, 32, 0, 0, 255);