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
path: root/intern
diff options
context:
space:
mode:
authorThomas Dinges <blender@dingto.org>2014-04-14 11:05:19 +0400
committerThomas Dinges <blender@dingto.org>2014-04-14 11:05:19 +0400
commitf24bfcffefa0eca74dbfb26f1e331c3f7a7da85e (patch)
tree02a72b68b533b530c082cffe36b13fabd91a980a /intern
parent7c78bcef6cb9c7cde928ed8062a12ab6ba88d2cb (diff)
Cycles: Show Auto Smooth and Angle in the UI, after Split Normals are in.
Diffstat (limited to 'intern')
-rw-r--r--intern/cycles/blender/addon/ui.py23
1 files changed, 1 insertions, 22 deletions
diff --git a/intern/cycles/blender/addon/ui.py b/intern/cycles/blender/addon/ui.py
index 6ef8aa7611e..e7c5e58a16f 100644
--- a/intern/cycles/blender/addon/ui.py
+++ b/intern/cycles/blender/addon/ui.py
@@ -556,28 +556,6 @@ class Cycles_PT_mesh_displacement(CyclesButtonsPanel, Panel):
layout.prop(cdata, "dicing_rate")
-class Cycles_PT_mesh_normals(CyclesButtonsPanel, Panel):
- bl_label = "Normals"
- bl_context = "data"
-
- @classmethod
- def poll(cls, context):
- return CyclesButtonsPanel.poll(context) and context.mesh
-
- def draw(self, context):
- layout = self.layout
-
- mesh = context.mesh
-
- split = layout.split()
-
- col = split.column()
- col.prop(mesh, "show_double_sided")
-
- col = split.column()
- col.label()
-
-
class CyclesObject_PT_motion_blur(CyclesButtonsPanel, Panel):
bl_label = "Motion Blur"
bl_context = "object"
@@ -1356,6 +1334,7 @@ def get_panels():
"DATA_PT_context_camera",
"DATA_PT_context_lamp",
"DATA_PT_context_speaker",
+ "DATA_PT_normals",
"DATA_PT_texture_space",
"DATA_PT_curve_texture_space",
"DATA_PT_mball_texture_space",