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:
authorCampbell Barton <ideasman42@gmail.com>2006-01-19 17:42:04 +0300
committerCampbell Barton <ideasman42@gmail.com>2006-01-19 17:42:04 +0300
commit14e1000e387b0dc3541610a88c54cb88f367b05e (patch)
tree29422e44b85bf2082eefa26b86deefd26b457942 /source/blender/src/interface.c
parent4a32e0380b4ac15955043554302742333329850b (diff)
Made the minimal theme align, and buttons now sit close together.
Looks nicer.
Diffstat (limited to 'source/blender/src/interface.c')
-rw-r--r--source/blender/src/interface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/interface.c b/source/blender/src/interface.c
index baa2b2ffec8..2b50cb1cf8e 100644
--- a/source/blender/src/interface.c
+++ b/source/blender/src/interface.c
@@ -4929,7 +4929,7 @@ void uiBlockEndAlign(uiBlock *block)
uiBut *prev, *but=NULL, *next;
int flag= 0, cols=0, rows=0;
- if ( !((BIF_GetThemeValue(TH_BUT_DRAWTYPE) == 1) || (BIF_GetThemeValue(TH_BUT_DRAWTYPE) == 2))) {
+ if ( !((BIF_GetThemeValue(TH_BUT_DRAWTYPE) == 0) || (BIF_GetThemeValue(TH_BUT_DRAWTYPE) == 1) || (BIF_GetThemeValue(TH_BUT_DRAWTYPE) == 2))) {
block->flag &= ~UI_BUT_ALIGN; // all 4 flags
return;
}