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:
authorTon Roosendaal <ton@blender.org>2003-10-29 23:43:40 +0300
committerTon Roosendaal <ton@blender.org>2003-10-29 23:43:40 +0300
commit0c6ffb0b219e16e378fdbd9fb4bac1aa4f903817 (patch)
treeb52faa7983d5834a2aa4f0a1dae28d24a8a41966 /source/blender/src/resources.c
parentd4a4f0e493d8a5b05d28be02ce6fecb4754550fa (diff)
- new .B.blend as provided by intrr, and tweaked by me. :)
- fixed error introduced by coding color for panel, instead of just implementing the right default color. this caused colors not possible below value '100'... tsk tsk
Diffstat (limited to 'source/blender/src/resources.c')
-rw-r--r--source/blender/src/resources.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/src/resources.c b/source/blender/src/resources.c
index 7ed76746279..533530bf28b 100644
--- a/source/blender/src/resources.c
+++ b/source/blender/src/resources.c
@@ -480,7 +480,7 @@ void BIF_InitTheme(void)
SETCOL(btheme->tv3d.text, 0, 0, 0, 255);
SETCOL(btheme->tv3d.text_hi, 255, 255, 255, 255);
SETCOL(btheme->tv3d.header, 195, 195, 195, 255);
- SETCOL(btheme->tv3d.panel, 165, 165, 165, 100);
+ SETCOL(btheme->tv3d.panel, 165, 165, 165, 150);
SETCOL(btheme->tv3d.shade1, 160, 160, 160, 100);
SETCOL(btheme->tv3d.shade2, 0x7f, 0x70, 0x70, 100);
@@ -513,7 +513,7 @@ void BIF_InitTheme(void)
SETCOL(btheme->tipo.grid, 94, 94, 94, 255);
SETCOL(btheme->tipo.back, 120, 120, 120, 255);
SETCOL(btheme->tipo.header, 195, 195, 195, 255);
- SETCOL(btheme->tipo.panel, 255, 255, 255, 100);
+ SETCOL(btheme->tipo.panel, 255, 255, 255, 150);
SETCOL(btheme->tipo.shade1, 140, 140, 140, 100);
SETCOL(btheme->tipo.shade2, 0x7f, 0x70, 0x70, 100);
SETCOL(btheme->tipo.vertex, 0xff, 0x70, 0xff, 255);