Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2019-05-18 12:53:30 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-05-18 12:53:30 +0300
commit7fd015bb70b2fe690d06a97ef8df54eed511d1ba (patch)
treeb21edf476f7943003702041009bd8119d6d42a53 /release/scripts/startup/bl_ui/properties_data_mesh.py
parenta82bc705121fb54af23cad55003b0988808c1561 (diff)
Fix for Python error due to file missing from last commit
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_data_mesh.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_data_mesh.py8
1 files changed, 1 insertions, 7 deletions
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):