Skip to content

Commit

Permalink
Set "draw GL polygon offset" to false by default.
Browse files Browse the repository at this point in the history
This fixes #5102 for many use cases.
  • Loading branch information
portnov committed Sep 13, 2024
1 parent f6999be commit 8c23b78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nodes/viz/viewer_draw_mk4.py
Original file line number Diff line number Diff line change
Expand Up @@ -584,7 +584,7 @@ class SvViewerDrawMk4(SverchCustomTreeNode, bpy.types.Node):

draw_gl_polygonoffset: BoolProperty(
name="Draw gl polygon offset",
default=True, update=updateNode)
default=False, update=updateNode)

draw_gl_wireframe: BoolProperty(
name="Draw gl wireframe",
Expand Down

0 comments on commit 8c23b78

Please sign in to comment.