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:
authorJens Verwiebe <info@jensverwiebe.de>2014-04-02 00:52:10 +0400
committerJens Verwiebe <info@jensverwiebe.de>2014-04-02 00:52:10 +0400
commit16537a8f898c50857b750a23bb10ea9cc870930a (patch)
tree1cb2e89851c4d769a687c30b737aec43d996b816 /release
parent747ba571a19f3adc46211e80184dde3fd6d336eb (diff)
Sculpt: the thread controls where unintentianlly greyed out along with capabilities.has_gravity condition
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d_toolbar.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index 7b1055758e0..b6bd902fd8f 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -1294,8 +1294,9 @@ class VIEW3D_PT_sculpt_options(Panel, View3DPaintPanel):
col.label(text="Gravity:")
col.prop(sculpt, "gravity", slider=True, text="Factor")
col.prop(sculpt, "gravity_object")
-
col.separator()
+
+ col = layout.column(align=True)
col.label(text="Threads:")
col.row(align=True).prop(scene, "omp_threads_mode", expand=True)
sub = col.column(align=True)