renaming BooleanProperty to BoolProperty (rna structs shouldnt affect scripters)

Talked with Brecht and Campbell and they both agreed that bpy.types should match bpy.props
In the ideal world we would rename bpy.props to BooleanProperty. This would break scripts though. So we go for a compromise and at least have some consistency.
This commit is contained in:
Dalai Felinto
2011-12-01 22:08:42 +00:00
parent 4db4a0933f
commit 1936b31cd0
8 changed files with 28 additions and 28 deletions

View File

@@ -354,7 +354,7 @@ class BUILTIN_KSI_WholeCharacter(KeyingSetInfo):
# custom properties
def doCustomProps(ksi, ks, bone):
prop_type_compat = {bpy.types.BooleanProperty,
prop_type_compat = {bpy.types.BoolProperty,
bpy.types.IntProperty,
bpy.types.FloatProperty}