Fix access to disabled OBJ exporter property

See e4de25e78b.
This commit is contained in:
Julian Eisel 2019-09-03 23:23:19 +02:00
parent 53aec1ccff
commit 0abe5a6a37
1 changed files with 2 additions and 1 deletions

View File

@ -311,7 +311,8 @@ class OBJ_PT_export_geometry(bpy.types.Panel):
operator = sfile.active_operator
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_bitflags')
layout.prop(operator, 'use_normals')