UI: More descriptive labels for Metaball panel.

Also remove redundant "Resolution" label.
This commit is contained in:
Pablo Vazquez 2019-02-11 15:45:18 +01:00
parent b8d4f06b10
commit 17ce9f61c3

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