Fix: Correct order of nodes in the Mesh > Write menu #114475

Merged
Hans Goudey merged 1 commits from Douglas-Paul/blender:fix-mesh-write-menu-order into blender-v4.0-release 2023-11-04 11:03:07 +01:00

View File

@ -384,9 +384,9 @@ class NODE_MT_geometry_node_GEO_MESH_WRITE(Menu):
def draw(self, context):
layout = self.layout
node_add_menu.add_node_type(layout, "GeometryNodeSetShadeSmooth")
if context.space_data.geometry_nodes_type == 'TOOL':
node_add_menu.add_node_type(layout, "GeometryNodeToolSetFaceSet")
node_add_menu.add_node_type(layout, "GeometryNodeSetShadeSmooth")
node_add_menu.draw_assets_for_catalog(layout, "Mesh/Write")