[Bf-blender-cvs] [7fd015bb70b] master: Fix for Python error due to file missing from last commit

Brecht Van Lommel noreply at git.blender.org
Sat May 18 11:54:35 CEST 2019


Commit: 7fd015bb70b2fe690d06a97ef8df54eed511d1ba
Author: Brecht Van Lommel
Date:   Sat May 18 11:53:30 2019 +0200
Branches: master
https://developer.blender.org/rB7fd015bb70b2fe690d06a97ef8df54eed511d1ba

Fix for Python error due to file missing from last commit

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

M	release/scripts/startup/bl_ui/properties_data_mesh.py

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

diff --git a/release/scripts/startup/bl_ui/properties_data_mesh.py b/release/scripts/startup/bl_ui/properties_data_mesh.py
index 2e849daa17e..b61d4936076 100644
--- a/release/scripts/startup/bl_ui/properties_data_mesh.py
+++ b/release/scripts/startup/bl_ui/properties_data_mesh.py
@@ -175,13 +175,7 @@ class DATA_PT_normals(MeshButtonsPanel, Panel):
     COMPAT_ENGINES = {'BLENDER_RENDER', 'BLENDER_EEVEE', 'BLENDER_WORKBENCH'}
 
     def draw(self, context):
-        layout = self.layout
-        layout.use_property_split = True
-
-        mesh = context.mesh
-
-        col = layout.column()
-        col.prop(mesh, "show_double_sided")
+        pass
 
 
 class DATA_PT_normals_auto_smooth(MeshButtonsPanel, Panel):



More information about the Bf-blender-cvs mailing list