[Bf-extensions-cvs] [0abe5a6a] master: Fix access to disabled OBJ exporter property

Julian Eisel noreply at git.blender.org
Tue Sep 3 23:25:17 CEST 2019


Commit: 0abe5a6a37d0014d5881f34543fa84f0bd0f66cc
Author: Julian Eisel
Date:   Tue Sep 3 23:23:19 2019 +0200
Branches: master
https://developer.blender.org/rBA0abe5a6a37d0014d5881f34543fa84f0bd0f66cc

Fix access to disabled OBJ exporter property

See e4de25e78b59e9.

===================================================================

M	io_scene_obj/__init__.py

===================================================================

diff --git a/io_scene_obj/__init__.py b/io_scene_obj/__init__.py
index 2e3dcc43..41b1a557 100644
--- a/io_scene_obj/__init__.py
+++ b/io_scene_obj/__init__.py
@@ -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')



More information about the Bf-extensions-cvs mailing list