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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-06-26 12:57:22 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-06-26 18:15:43 +0300
commite69e62a90ad85500e9e17d02ba95130a8db1a57b (patch)
tree6e2488442228a247fd940d117acabc86d3ba311e /source/blender/editors/space_statusbar
parentcf8a0597693de8fbf3dccf607d81e6e1f2c0d2aa (diff)
UI: decrease status bar height.
Diffstat (limited to 'source/blender/editors/space_statusbar')
-rw-r--r--source/blender/editors/space_statusbar/space_statusbar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_statusbar/space_statusbar.c b/source/blender/editors/space_statusbar/space_statusbar.c
index 4c6a2eea469..2d98431bf0c 100644
--- a/source/blender/editors/space_statusbar/space_statusbar.c
+++ b/source/blender/editors/space_statusbar/space_statusbar.c
@@ -186,7 +186,7 @@ void ED_spacetype_statusbar(void)
/* regions: header window */
art = MEM_callocN(sizeof(*art), "spacetype statusbar header region");
art->regionid = RGN_TYPE_HEADER;
- art->prefsizey = HEADERY;
+ art->prefsizey = 0.8f * HEADERY;
art->prefsizex = UI_UNIT_X * 5; /* Mainly to avoid glitches */
art->keymapflag = ED_KEYMAP_UI | ED_KEYMAP_VIEW2D | ED_KEYMAP_HEADER;
art->init = statusbar_header_region_init;