[Bf-blender-cvs] [17ce9f61c3e] master: UI: More descriptive labels for Metaball panel.

Pablo Vazquez noreply at git.blender.org
Mon Feb 11 15:46:11 CET 2019


Commit: 17ce9f61c3ec95178e9895b1620867b8b00b6dea
Author: Pablo Vazquez
Date:   Mon Feb 11 15:45:18 2019 +0100
Branches: master
https://developer.blender.org/rB17ce9f61c3ec95178e9895b1620867b8b00b6dea

UI: More descriptive labels for Metaball panel.

Also remove redundant "Resolution" label.

===================================================================

M	release/scripts/startup/bl_ui/properties_data_metaball.py

===================================================================

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):



More information about the Bf-blender-cvs mailing list