Fix T73357: Multiple importers fail

Very stupid mistake in ba8de85299, registered property for wrong
class. It should be registered for the PLY importer add-on only.
This commit is contained in:
Julian Eisel
2020-01-26 16:48:05 +01:00
parent 96339c4cef
commit b59adcaa36

View File

@@ -116,13 +116,6 @@ class ImportHelper:
subtype='FILE_PATH',
)
# Hide opertator properties, rest of this is managed in C. See WM_operator_properties_filesel().
hide_props_region: BoolProperty(
name="Hide Operator Properties",
description="Collapse the region displaying the operator settings",
default=True,
)
def invoke(self, context, _event):
context.window_manager.fileselect_add(self)
return {'RUNNING_MODAL'}