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-19 13:19:58 +0400
committerTon Roosendaal <ton@blender.org>2003-10-19 13:19:58 +0400
commitc6a2f42dba65e82e32eadf0a8867a4bcd3e8b08f (patch)
treea68427c9ef08ba6c97b48db296ec6a1515912530 /source/blender/src/butspace.c
parentc19d84f89e442a283ea3dcd4d80fb113b52d10bd (diff)
- simplified Theme API. No need to include 'current active area' anymore.
like: BIF_ThemeColor(TH_GRID); will be sufficient. Blender does the rest. - fixed bug in CTRL-X (reload home file) with themes - fixed bug in horizontal alignment of different height panels. Seems also to solve the drawing error with constraints...
Diffstat (limited to 'source/blender/src/butspace.c')
-rw-r--r--source/blender/src/butspace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/butspace.c b/source/blender/src/butspace.c
index bd443ec1bb8..ae04bceba9b 100644
--- a/source/blender/src/butspace.c
+++ b/source/blender/src/butspace.c
@@ -378,7 +378,7 @@ void drawbutspace(ScrArea *sa, void *spacedata)
myortho2(v2d->cur.xmin, v2d->cur.xmax, v2d->cur.ymin, v2d->cur.ymax);
- BIF_GetThemeColor3fv(sa, TH_BACK, col);
+ BIF_GetThemeColor3fv(TH_BACK, col);
glClearColor(col[0], col[1], col[2], 0.0);
glClear(GL_COLOR_BUFFER_BIT);