From 90bd472ef2b9438a71a84980c1311b40a12b81ec Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 15 Sep 2010 08:38:29 +0000 Subject: [PATCH] filling is used for 3D curves but not for filling, sigh. --- release/scripts/ui/properties_data_curve.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release/scripts/ui/properties_data_curve.py b/release/scripts/ui/properties_data_curve.py index 9289b0799e8..1d8034c6add 100644 --- a/release/scripts/ui/properties_data_curve.py +++ b/release/scripts/ui/properties_data_curve.py @@ -108,7 +108,7 @@ class DATA_PT_shape_curve(CurveButtonsPanel, bpy.types.Panel): sub.prop(curve, "resolution_v", text="Preview V") sub.prop(curve, "render_resolution_v", text="Render V") - if (is_curve or is_text) and curve.dimensions != '3D': + if (is_curve or is_text): sub = col.column() sub.active = (curve.bevel_object is None) sub.label(text="Fill:")