Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Dinges <blender@dingto.org>2012-04-25 22:12:41 +0400
committerThomas Dinges <blender@dingto.org>2012-04-25 22:12:41 +0400
commit3a947461699742b7ca312f2deeb748589012327c (patch)
tree4d08f3687723933127de15d91a01cdec084673d7 /release
parentd53133d25f7373ee03b5d53f5eaf35cd9fc26d4e (diff)
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.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_data_modifier.py14
1 files changed, 9 insertions, 5 deletions
diff --git a/release/scripts/startup/bl_ui/properties_data_modifier.py b/release/scripts/startup/bl_ui/properties_data_modifier.py
index a4e7d107099..9c4e79c4c34 100644
--- a/release/scripts/startup/bl_ui/properties_data_modifier.py
+++ b/release/scripts/startup/bl_ui/properties_data_modifier.py
@@ -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:")