Skip to content
Snippets Groups Projects
Commit 0abe5a6a authored by Julian Eisel's avatar Julian Eisel
Browse files

Fix access to disabled OBJ exporter property

See e4de25e7.
parent 53aec1cc
No related branches found
Tags
No related merge requests found
...@@ -311,7 +311,8 @@ class OBJ_PT_export_geometry(bpy.types.Panel): ...@@ -311,7 +311,8 @@ class OBJ_PT_export_geometry(bpy.types.Panel):
operator = sfile.active_operator operator = sfile.active_operator
layout.prop(operator, 'use_mesh_modifiers') layout.prop(operator, 'use_mesh_modifiers')
layout.prop(operator, 'use_mesh_modifiers_render') # Property definition disabled, not working in 2.8 currently.
# layout.prop(operator, 'use_mesh_modifiers_render')
layout.prop(operator, 'use_smooth_groups') layout.prop(operator, 'use_smooth_groups')
layout.prop(operator, 'use_smooth_groups_bitflags') layout.prop(operator, 'use_smooth_groups_bitflags')
layout.prop(operator, 'use_normals') layout.prop(operator, 'use_normals')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment