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>2010-11-10 22:37:58 +0300
committerThomas Dinges <blender@dingto.org>2010-11-10 22:37:58 +0300
commite6f6a0a6e2b297ec3c4db67dfddaefb359305afe (patch)
treefb0536dbd242413e528dbc6ef90a3c2082aaeb58 /release/scripts/ui
parent3b5ad5171956945554da336a00538ca545c021d3 (diff)
Nurbs Curve UI:
* Fixed an alignment issue in resolution buttons.
Diffstat (limited to 'release/scripts/ui')
-rw-r--r--release/scripts/ui/properties_data_curve.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/release/scripts/ui/properties_data_curve.py b/release/scripts/ui/properties_data_curve.py
index 9857bb0a642..54fa6e2d460 100644
--- a/release/scripts/ui/properties_data_curve.py
+++ b/release/scripts/ui/properties_data_curve.py
@@ -103,8 +103,9 @@ class DATA_PT_shape_curve(CurveButtonsPanel, bpy.types.Panel):
col = split.column()
if is_surf:
- sub = col.column(align=True)
+ sub = col.column()
sub.label(text="")
+ sub = col.column(align=True)
sub.prop(curve, "resolution_v", text="Preview V")
sub.prop(curve, "render_resolution_v", text="Render V")