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>2019-02-27 08:01:09 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-02-27 08:06:37 +0300
commitb21007757fd642a1c77ff7081832d93b3282a34b (patch)
treec07777b3d00441f84d02bd612ad55a7d0bea50e2 /release/scripts/startup/bl_ui/space_view3d.py
parentcdda910fc321ab03d21434b5015dae41b8e7720b (diff)
DRW: disable wide edges when face-dots are used
Users who prefer to use face dot's don't get an advantage from drawing thicker wire. Requested by @ward
Diffstat (limited to 'release/scripts/startup/bl_ui/space_view3d.py')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index 19e9c3f8041..7a17cb864c6 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -4936,10 +4936,6 @@ class VIEW3D_PT_overlay_edit_mesh(Panel):
sub = split.column()
sub.prop(overlay, "show_faces", text="Faces")
sub = split.column()
- if shading.type == 'WIREFRAME':
- sub.active = not shading.show_xray_wireframe
- else:
- sub.active = not shading.show_xray
sub.prop(overlay, "show_face_center", text="Center")
row = col.row(align=True)