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:
authorJoshua Leung <aligorith@gmail.com>2011-04-20 14:10:07 +0400
committerJoshua Leung <aligorith@gmail.com>2011-04-20 14:10:07 +0400
commita4ebe848d93af22956386a980febb9726b654f0e (patch)
tree78bf6a11f167199be2db86ee1fd568da20f9ad3d /source/blender/editors/screen
parent38a192031ffa1a9183d0a4f1d9bb5e03ebd7e2c3 (diff)
Bugfix [#27054] 2.57 icons and buttons aren't perfectly centered
This seems to make things look a bit better. What a difference 1px makes...
Diffstat (limited to 'source/blender/editors/screen')
-rw-r--r--source/blender/editors/screen/area.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/screen/area.c b/source/blender/editors/screen/area.c
index 5a80799fc3b..1882d849116 100644
--- a/source/blender/editors/screen/area.c
+++ b/source/blender/editors/screen/area.c
@@ -1457,7 +1457,7 @@ void ED_region_header(const bContext *C, ARegion *ar)
UI_view2d_view_ortho(&ar->v2d);
xco= maxco= 8;
- yco= HEADERY-3;
+ yco= HEADERY-4;
/* draw all headers types */
for(ht= ar->type->headertypes.first; ht; ht= ht->next) {