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:
@@ -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()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user