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:
authorCampbell Barton <ideasman42@gmail.com>2013-04-18 21:09:56 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-04-18 21:09:56 +0400
commit5c72a19c09a8066b0cbe49730dc129bd93d5857a (patch)
tree0afce5d4f7636b17082ab830e5e49419b4af1fb8 /release
parentfeeab1ad53f1b7cd4496fb8e7f173f21e460aac0 (diff)
add display mode for sharp edges.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index aedbacf1b2b..ef658b65ddb 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -2647,6 +2647,10 @@ class VIEW3D_PT_view3d_meshstatvis(Panel):
row = layout.row(align=True)
row.prop(statvis, "distort_min", text="")
row.prop(statvis, "distort_max", text="")
+ elif statvis_type == 'SHARP':
+ row = layout.row(align=True)
+ row.prop(statvis, "sharp_min", text="")
+ row.prop(statvis, "sharp_max", text="")
class VIEW3D_PT_view3d_curvedisplay(Panel):