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:
authorHarley Acheson <harley>2019-02-21 19:34:48 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-02-21 20:03:34 +0300
commit1de1cedf4c2fe3dc460267ea3134f17df508b7d9 (patch)
treeb0d89c5e72b62015f9e40309ff4bd0b8a3271371 /source/blender/makesdna/DNA_screen_types.h
parent86bbadaaee949f39f28436ff65c65ae6b194a3c3 (diff)
UI: better widget drawing with thick line width.
When the line width was larger than the UI scale, there was not enough space for thicker widget outlines to draw properly. Now widgets are made a little larger to accommodate the thicker outlines. Differential Revision: https://developer.blender.org/D4368
Diffstat (limited to 'source/blender/makesdna/DNA_screen_types.h')
-rw-r--r--source/blender/makesdna/DNA_screen_types.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/source/blender/makesdna/DNA_screen_types.h b/source/blender/makesdna/DNA_screen_types.h
index f67ec090381..e0dca9cd646 100644
--- a/source/blender/makesdna/DNA_screen_types.h
+++ b/source/blender/makesdna/DNA_screen_types.h
@@ -469,9 +469,10 @@ enum {
AREA_FLAG_ACTIONZONES_UPDATE = (1 << 8),
};
-#define AREAGRID 4
-#define AREAMINX 32
-#define HEADERY 26
+#define AREAGRID 4
+#define AREAMINX 32
+#define HEADER_PADDING_Y 6
+#define HEADERY (20 + HEADER_PADDING_Y)
/** #bScreen.flag */
enum {