Node Wrangler: Improved accuracy on Align Nodes operator #104551

Open
quackarooni wants to merge 18 commits from quackarooni/blender-addons:nw_rework_align_nodes into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
Showing only changes of commit 06271f6d4e - Show all commits

View File

@ -118,11 +118,11 @@ class NWNodeWrangler(bpy.types.AddonPreferences):
def draw(self, context):
layout = self.layout
split = layout.split(factor=0.40)
col = split.column(heading="Margin (Align Nodes):")
col = layout.column(heading="Margin (Align Nodes):")
col.prop(self, "align_nodes_margin", text="")
col.separator()
col = split.column(heading="Merge Node Options:")
col.label(text="Merge Node Options:")
col.prop(self, "merge_position")
col.prop(self, "merge_hide")