Py/Operators: FBX Exporter setting order was still randomized.

Some lines removed recently I thought were are needed were there so classes that use mix-ins keep the argument order.
This commit is contained in:
2011-03-07 08:57:35 +00:00
parent db066592b7
commit c544d3ffb8

View File

@@ -604,6 +604,10 @@ class RNAMetaPropGroup(RNAMeta, StructMetaPropGroup):
class OrderedMeta(RNAMeta):
def __init__(cls, name, bases, attributes):
if attributes.__class__ is OrderedDictMini:
cls.order = attributes.order
def __prepare__(name, bases, **kwargs):
return OrderedDictMini() # collections.OrderedDict()