Skip to content

Commit

Permalink
Fix access to disabled OBJ exporter property
Browse files Browse the repository at this point in the history
See e4de25e.
  • Loading branch information
julianeisel committed Sep 3, 2019
1 parent 53aec1c commit 0abe5a6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion io_scene_obj/__init__.py
Expand Up @@ -311,7 +311,8 @@ def draw(self, context):
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')
Expand Down

0 comments on commit 0abe5a6

Please sign in to comment.