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>2009-12-03 17:20:35 +0300
committerCampbell Barton <ideasman42@gmail.com>2009-12-03 17:20:35 +0300
commit685d418f3a185a3e52fb84ba121c621e1017b623 (patch)
tree44facaafb50e87da76d5647196c400c05fcec98b /release/scripts/ui
parent3b1c6d6065ea784e6986bff58a842afd0915dc7a (diff)
- curve geometry curve panel wasnt displaying with no active spline
- graph export didnt work for constraints with no subtarget - utility functions for duplicating a set of bones and blending between 2 sets
Diffstat (limited to 'release/scripts/ui')
-rw-r--r--release/scripts/ui/properties_data_curve.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/release/scripts/ui/properties_data_curve.py b/release/scripts/ui/properties_data_curve.py
index b6e82e05994..3ee16ad9585 100644
--- a/release/scripts/ui/properties_data_curve.py
+++ b/release/scripts/ui/properties_data_curve.py
@@ -133,8 +133,7 @@ class DATA_PT_geometry_curve(DataButtonsPanel):
if obj and obj.type == 'SURFACE':
return False
- curve = context.curve
- return (curve and curve.active_spline)
+ return context.curve
def draw(self, context):
layout = self.layout