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:
authorMatt Ebb <matt@mke3.net>2006-10-28 17:21:02 +0400
committerMatt Ebb <matt@mke3.net>2006-10-28 17:21:02 +0400
commit3e0c45440d8fd5998a944699feb5afa033e80918 (patch)
treeccab9e9e8541d6e1398d0daa4b52f13f34c7accf /source/blender/src/resources.c
parent129cab4137d2a928e68eec7f7647b1f2b690686a (diff)
* Simple patch 5058 from gsrb3d to use constants instead of magic numbers for
theme drawtypes
Diffstat (limited to 'source/blender/src/resources.c')
-rw-r--r--source/blender/src/resources.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/resources.c b/source/blender/src/resources.c
index 06e2273b591..42575989dde 100644
--- a/source/blender/src/resources.c
+++ b/source/blender/src/resources.c
@@ -358,7 +358,7 @@ void BIF_InitTheme(void)
SETCOL(btheme->tui.menu_hilite, 0x7F,0x7F,0x7F, 255);
SETCOL(btheme->tui.menu_text, 0, 0, 0, 255);
SETCOL(btheme->tui.menu_text_hi, 255, 255, 255, 255);
- btheme->tui.but_drawtype= 1;
+ btheme->tui.but_drawtype= TH_SHADED;
/* space view3d */
SETCOL(btheme->tv3d.back, 115, 115, 115, 255);