Skip to content

Commit

Permalink
Move absolute_bulge to N panel.
Browse files Browse the repository at this point in the history
  • Loading branch information
portnov committed Jan 4, 2023
1 parent 73b4d13 commit 88f1d9d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion nodes/surface/blend_surface.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ def update_sockets(self, context):

def draw_buttons(self, context, layout):
layout.prop(self, 'tangency_mode')
layout.prop(self, 'absolute_bulge')
box = layout.row(align=True)
box.prop(self, 'curve1_mode', text='')
box.prop(self, 'flip1', toggle=True, text='Flip')
Expand All @@ -118,6 +117,10 @@ def draw_buttons(self, context, layout):
box.prop(self, 'flip2', toggle=True, text='Flip')
layout.prop(self, 'use_nurbs')

def draw_buttons_ext(self, context, layout):
self.draw_buttons(context, layout)
layout.prop(self, 'absolute_bulge')

def sv_init(self, context):
self.inputs.new('SvSurfaceSocket', 'Surface1')
self.inputs.new('SvCurveSocket', 'UVCurve1')
Expand Down

0 comments on commit 88f1d9d

Please sign in to comment.