From 18888b7b0c3556d3a2177fe7693fda02bf2a8cb5 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 31 Jul 2018 16:05:31 +1000 Subject: 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). --- release/scripts/startup/bl_ui/space_userpref.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'release') 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() -- cgit v1.2.3