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 /release
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 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_userpref.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_userpref.py b/release/scripts/startup/bl_ui/space_userpref.py
index ee1dcae29a1..e0902dd8636 100644
--- a/release/scripts/startup/bl_ui/space_userpref.py
+++ b/release/scripts/startup/bl_ui/space_userpref.py
@@ -539,6 +539,8 @@ class USERPREF_PT_system(Panel):
col.label(text="Text Draw Options:")
col.prop(system, "use_text_antialiasing")
+ if system.use_text_antialiasing:
+ col.prop(system, "use_text_hinting")
col.separator()