Fixed Blender 4.3 compatiblity error
This commit is contained in:
@@ -203,7 +203,8 @@ class PSA_OT_export(Operator, ExportHelper):
|
||||
maxlen=1024,
|
||||
default='')
|
||||
|
||||
def __init__(self):
|
||||
def __init__(self, *args, **kwargs):
|
||||
super().__init__(*args, **kwargs)
|
||||
self.armature_object = None
|
||||
|
||||
@classmethod
|
||||
|
||||
@@ -8,8 +8,8 @@ from .properties import PSA_PG_export_action_list_item, filter_sequences
|
||||
class PSA_UL_export_sequences(UIList):
|
||||
bl_idname = 'PSA_UL_export_sequences'
|
||||
|
||||
def __init__(self):
|
||||
super(PSA_UL_export_sequences, self).__init__()
|
||||
def __init__(self, *args, **kwargs):
|
||||
super(PSA_UL_export_sequences, self).__init__(*args, **kwargs)
|
||||
# Show the filtering options by default.
|
||||
self.use_filter_show = True
|
||||
|
||||
|
||||
Reference in New Issue
Block a user