* 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.
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:")