Fix: Nodes: forbid muting Group Input nodes

This is already the case for Group Output nodes. It was an oversight
not to do the same for inputs.

Also see https://archive.blender.org/developer/D13364.
This commit is contained in:
Jacques Lucke
2025-09-27 22:52:29 +02:00
parent 221c16f2f0
commit ee5e14e5fe

View File

@@ -891,6 +891,7 @@ void register_node_type_group_input()
ntype->insert_link = blender::nodes::group_input_insert_link;
ntype->get_extra_info = node_group_input_extra_info;
ntype->get_compositor_operation = blender::nodes::get_group_input_compositor_operation;
ntype->no_muting = true;
blender::bke::node_register_type(*ntype);
}