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.acheson@gmail.com>2020-10-12 19:53:00 +0300
committerHarley Acheson <harley.acheson@gmail.com>2020-10-12 19:53:00 +0300
commit19dcd32ee5942d17f9b9d45d7e13fd06206f54b8 (patch)
tree367e02853f9f25e96bc8d0c5be34616aa5bc8a0a /source/blender/editors/include
parent1b7458f85a6fbee8bbe072f470b6b576221da101 (diff)
UI: Remove Hard-coded Default Font Size
Default text output routines (which do not specify a size) will now use Text Style point size. Differential Revision: https://developer.blender.org/D9107 Reviewed by Brecht Van Lommel
Diffstat (limited to 'source/blender/editors/include')
-rw-r--r--source/blender/editors/include/UI_interface.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/blender/editors/include/UI_interface.h b/source/blender/editors/include/UI_interface.h
index cac18d81f56..bdec5ef3858 100644
--- a/source/blender/editors/include/UI_interface.h
+++ b/source/blender/editors/include/UI_interface.h
@@ -226,6 +226,12 @@ enum {
UI_BUT_OVERRIDEN = 1u << 31u,
};
+/* Default font size for normal text. */
+#define UI_DEFAULT_TEXT_POINTS 11
+
+/* Larger size used for title text. */
+#define UI_DEFAULT_TITLE_POINTS 12
+
#define UI_PANEL_WIDTH 340
#define UI_COMPACT_PANEL_WIDTH 160
#define UI_SIDEBAR_PANEL_WIDTH 220