2.6 Ocean Modifier UI:
* Fix an alignment issue, column_flow layout apparently does not use the whole width, leaving a small gap on the right side. This should be fixed in the layout engine, but too close to release now.
This commit is contained in:
@@ -440,11 +440,15 @@ class DATA_PT_modifiers(ModifierButtonsPanel, Panel):
|
||||
|
||||
layout.separator()
|
||||
|
||||
flow = layout.column_flow()
|
||||
flow.prop(md, "time")
|
||||
flow.prop(md, "resolution")
|
||||
flow.prop(md, "spatial_size")
|
||||
flow.prop(md, "depth")
|
||||
split = layout.split()
|
||||
|
||||
col = split.column()
|
||||
col.prop(md, "time")
|
||||
col.prop(md, "resolution")
|
||||
|
||||
col = split.column()
|
||||
col.prop(md, "spatial_size")
|
||||
col.prop(md, "depth")
|
||||
|
||||
layout.label("Waves:")
|
||||
|
||||
|
Reference in New Issue
Block a user