Bugfix #5289: "Shape Wizard Widget" script was using non-existant key:

changed so "Key 0" is substituted for "Basis".  This may not be correct...
Also, fix to make ob.setEuler() accept a tuple again.
This commit is contained in:
Ken Hughes
2006-11-23 00:28:09 +00:00
parent d80b7cc5c4
commit 7b9fac49f5
2 changed files with 6 additions and 3 deletions

View File

@@ -5357,7 +5357,7 @@ static PyObject *Object_SetMatrix( BPy_Object * self, PyObject * args )
static PyObject *Object_SetEuler( BPy_Object * self, PyObject * args )
{
return EXPP_setterWrapper( (void *)self, args,
return EXPP_setterWrapperTuple( (void *)self, args,
(setter)Object_setEuler );
}