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.prop(mball, "threshold", text="Threshold") - col.prop(mball, "update_method") + col.separator() + + col.prop(mball, "threshold", text="Influence Threshold") + + col.separator() + + col.prop(mball, "update_method", text="Update on Edit") class DATA_PT_mball_texture_space(DataButtonsPanel, Panel):