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:
authorPablo Vazquez <contact@pablovazquez.art>2019-02-11 17:45:18 +0300
committerPablo Vazquez <contact@pablovazquez.art>2019-02-11 17:46:09 +0300
commit17ce9f61c3ec95178e9895b1620867b8b00b6dea (patch)
treeee0d4eb106308177b8d3dfb3aa6f8b1485282958 /release
parentb8d4f06b102d9bc3e4b1cf9fe57b9e6dd0a3d961 (diff)
UI: More descriptive labels for Metaball panel.
Also remove redundant "Resolution" label.
Diffstat (limited to 'release')
-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):