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>2018-07-31 09:05:31 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-07-31 09:19:00 +0300
commit18888b7b0c3556d3a2177fe7693fda02bf2a8cb5 (patch)
treef806329f9877330330d485d976b9bea81b758b87 /source/blender/makesdna
parent1195a4a040ba8ecffd3221f5aa38c7be5272124b (diff)
UI: use text hinting (now user preference)
D3201 by @ambient w/ edits not to impact fonts used for rendering (only change display for UI text).
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_userdef_types.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_userdef_types.h b/source/blender/makesdna/DNA_userdef_types.h
index 2d52c1a67de..6f0f97261ee 100644
--- a/source/blender/makesdna/DNA_userdef_types.h
+++ b/source/blender/makesdna/DNA_userdef_types.h
@@ -804,7 +804,8 @@ typedef enum eWM_DrawMethod {
/* text draw options
* UserDef.text_render */
typedef enum eText_Draw_Options {
- USER_TEXT_DISABLE_AA = (1 << 0),
+ USER_TEXT_DISABLE_AA = (1 << 0),
+ USER_TEXT_DISABLE_HINTING = (1 << 1),
} eText_Draw_Options;
/* tw_flag (transform widget) */