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:
Diffstat (limited to 'release/scripts/startup/bl_ui/space_userpref.py')
-rw-r--r--release/scripts/startup/bl_ui/space_userpref.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/release/scripts/startup/bl_ui/space_userpref.py b/release/scripts/startup/bl_ui/space_userpref.py
index ddcc19a3781..4e12dcc75d4 100644
--- a/release/scripts/startup/bl_ui/space_userpref.py
+++ b/release/scripts/startup/bl_ui/space_userpref.py
@@ -533,9 +533,10 @@ class USERPREF_PT_system(Panel):
col.separator()
col.label(text="Text Draw Options:")
- col.prop(system, "use_text_antialiasing")
- if system.use_text_antialiasing:
- col.prop(system, "use_text_hinting")
+ col.prop(system, "use_text_antialiasing", text="Anti-aliasing")
+ sub = col.column()
+ sub.active = system.use_text_antialiasing
+ sub.prop(system, "text_hinting", text="Hinting")
# 3. Column
column = split.column()