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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-08-21 20:08:23 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-08-21 20:08:23 +0300
commit596c3368f4b09bdeec46e7b44abfc8bcb7ba8fcf (patch)
tree09a8d4af2f134db67579577d38ad78fa667afede /release/scripts/startup
parent794836c8f17a2feaa43d31d23982fa41e3f953a4 (diff)
parent34029fc71a3cc7e69f977462d4b3f09eb10ccca2 (diff)
Merge branch 'master' into blender2.8
Diffstat (limited to 'release/scripts/startup')
-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()