From b941ab972d1e6d7e55eaa5ad509b50a25f8100ce Mon Sep 17 00:00:00 2001 From: Tamito Kajiyama Date: Tue, 29 Jul 2014 14:36:56 +0900 Subject: Added support for Feestyle edge/face marks in the 3D view window in Cycles. --- release/scripts/startup/bl_ui/space_view3d.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'release/scripts/startup/bl_ui') diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py index 1079c5016a9..eb2aaf2a6dc 100644 --- a/release/scripts/startup/bl_ui/space_view3d.py +++ b/release/scripts/startup/bl_ui/space_view3d.py @@ -2223,7 +2223,7 @@ class VIEW3D_MT_edit_mesh_edges(Menu): layout.separator() - if with_freestyle and not scene.render.use_shading_nodes: + if with_freestyle: layout.operator("mesh.mark_freestyle_edge").clear = False layout.operator("mesh.mark_freestyle_edge", text="Clear Freestyle Edge").clear = True layout.separator() @@ -2270,7 +2270,7 @@ class VIEW3D_MT_edit_mesh_faces(Menu): layout.separator() - if with_freestyle and not scene.render.use_shading_nodes: + if with_freestyle: layout.operator("mesh.mark_freestyle_face").clear = False layout.operator("mesh.mark_freestyle_face", text="Clear Freestyle Face").clear = True layout.separator() @@ -2934,7 +2934,7 @@ class VIEW3D_PT_view3d_meshdisplay(Panel): col.prop(mesh, "show_edge_seams", text="Seams") col.prop(mesh, "show_edge_sharp", text="Sharp", text_ctxt=i18n_contexts.plural) col.prop(mesh, "show_edge_bevel_weight", text="Bevel") - if with_freestyle and not scene.render.use_shading_nodes: + if with_freestyle: col.prop(mesh, "show_freestyle_edge_marks", text="Edge Marks") col.prop(mesh, "show_freestyle_face_marks", text="Face Marks") -- cgit v1.2.3