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:
authorCampbell Barton <ideasman42@gmail.com>2010-09-15 12:38:29 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-09-15 12:38:29 +0400
commit90bd472ef2b9438a71a84980c1311b40a12b81ec (patch)
treec050c07ca7696a91c0c5598b73ac4d6fb3431303 /release
parent46b61ccf21a6582f399e4a7cd644f80f7c34de76 (diff)
filling is used for 3D curves but not for filling, sigh.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/ui/properties_data_curve.py2
1 files changed, 1 insertions, 1 deletions
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:")