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:
-rw-r--r--release/scripts/startup/bl_ui/properties_data_metaball.py17
1 files changed, 10 insertions, 7 deletions
diff --git a/release/scripts/startup/bl_ui/properties_data_metaball.py b/release/scripts/startup/bl_ui/properties_data_metaball.py
index 4b6e648e62d..25974068ed0 100644
--- a/release/scripts/startup/bl_ui/properties_data_metaball.py
+++ b/release/scripts/startup/bl_ui/properties_data_metaball.py
@@ -58,14 +58,17 @@ class DATA_PT_metaball(DataButtonsPanel, Panel):
mball = context.meta_ball
- col = layout.column()
- col.label(text="Resolution:")
- sub = col.column(align=True)
- sub.prop(mball, "resolution", text="Resolution View")
- sub.prop(mball, "render_resolution", text="Render")
+ col = layout.column(align=True)
+ col.prop(mball, "resolution", text="Resolution Viewport")
+ col.prop(mball, "render_resolution", text="Render")
+
+ col.separator()
+
+ col.prop(mball, "threshold", text="Influence Threshold")
+
+ col.separator()
- col.prop(mball, "threshold", text="Threshold")
- col.prop(mball, "update_method")
+ col.prop(mball, "update_method", text="Update on Edit")
class DATA_PT_mball_texture_space(DataButtonsPanel, Panel):